I'm hoping someone can help me I'm trying to create a custom transition using a jQuery called "cycle" so far I can only mix the two transitions but I have no idea on how to take these two transitions and create a new transition from it.
<script type="text/javascript">
$(function() {
$('#toss1').cycle({
fx: 'toss',
easing: 'easeInBack',
delay: -2000
});
$('#toss2').cycle({
fx: 'toss',
easing: 'easeInBack',
animOut: { left: 800 }
});
});
</script>
This link is on creating advanced animations:
http://jquery.malsup.com/cycle/adv.html
And here's the info on easing, where you can find out how to create custom easing code:
http://gsgd.co.uk/sandbox/jquery/easing/
I don't understand how to mix the two from what I read.