
- MooTools Tutorial
- MooTools - Home
- MooTools - Introduction
- MooTools - Installation
- MooTools - Program Structure
- MooTools - Selectors
- MooTools - Using Arrays
- MooTools - Functions
- MooTools - Event Handling
- MooTools - DOM Manipulations
- MooTools - Style Properties
- MooTools - Input Filtering
- MooTools - Drag and Drop
- MooTools - Regular Expression
- MooTools - Periodicals
- MooTools - Sliders
- MooTools - Sortables
- MooTools - Accordion
- MooTools - Tooltips
- MooTools - Tabbed Content
- MooTools - Classes
- MooTools - Fx.Element
- MooTools - Fx.Slide
- MooTools - Fx.Tween
- MooTools - Fx.Morph
- MooTools - Fx.Options
- MooTools - Fx.Events
- MooTools Useful Resources
- MooTools - Quick Guide
- MooTools - Useful Resources
- MooTools - Discussion
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
MooTools - Cubic Transition
This displays a cubicular transition with in, out, and in-out events. Let us take an example that adds a mouse down event to a div element along with cubicular events. Take a look at the following code.
Example
<!DOCTYPE html> <html> <head> <style> #cubic_in { width: 100px; height: 20px; background-color: #F4D03F; border: 2px solid #808B96; } #cubic_out { width: 100px; height: 20px; background-color: #F4D03F; border: 2px solid #808B96; } #cubic_in-out { width: 100px; height: 20px; background-color: #F4D03F; border: 2px solid #808B96; } </style> <script type = "text/javascript" src = "MooTools-Core-1.6.0.js"></script> <script type = "text/javascript" src = "MooTools-More-1.6.0.js"></script> <script type = "text/javascript"> window.addEvent('domready', function() { $('cubic_in').addEvent('mousedown', function(event) { this.set('tween', {duration: 'long', transition: 'cubic:in'}); this.tween('width', [80, 400]); }); $('cubic_out').addEvent('mousedown', function(event) { this.set('tween', {duration: 'long', transition: 'cubic:out'}); this.tween('width', [80, 400]); }); $('cubic_in-out').addEvent('mousedown', function(event) { this.set('tween', {duration: 'long', transition: 'cubic:in-out'}); this.tween('width', [80, 400]); }); }); </script> </head> <body> <div id = "cubic_in"> Cubic : in</div><br/> <div id = "cubic_out"> Cubic : out</div><br/> <div id = "cubic_in-out"> Cubic : in-out</div><br/> </body> </html>
You will receive the following output −
Output
mootools_fxoptions.htm
Advertisements