MooTools - Transición de un cuarto
Esto muestra una transición cuartética con eventos de entrada, salida e entrada. Tomemos un ejemplo en el que agregamos unmouse downevento a un elemento div junto con eventos cuartéticos. Eche un vistazo al siguiente código.
Ejemplo
<!DOCTYPE html>
<html>
<head>
<style>
#quart_in {
width: 100px;
height: 20px;
background-color: #F4D03F;
border: 2px solid #808B96;
}
#quart_out {
width: 100px;
height: 20px;
background-color: #F4D03F;
border: 2px solid #808B96;
}
#quart_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() {
$('quart_in').addEvent('mousedown', function(event) {
this.set('tween', {duration: 'long', transition: 'quart:in'});
this.tween('width', [80, 400]);
});
$('quart_out').addEvent('mousedown', function(event) {
this.set('tween', {duration: 'long', transition: 'quart:out'});
this.tween('width', [80, 400]);
});
$('quart_in-out').addEvent('mousedown', function(event) {
this.set('tween', {duration: 'long', transition: 'quart:in-out'});
this.tween('width', [80, 400]);
});
});
</script>
</head>
<body>
<div id = "quart_in"> Quart : in</div><br/>
<div id = "quart_out"> Quart : out</div><br/>
<div id = "quart_in-out"> Quart : in-out</div><br/>
</body>
</html>
Recibirá el siguiente resultado: