51 lines
1.6 KiB
JavaScript
51 lines
1.6 KiB
JavaScript
|
|
||
|
$(document).ready(function(){
|
||
|
|
||
|
$('.curtains>li').css('position', 'fixed');
|
||
|
|
||
|
$('.curtains').curtain();
|
||
|
|
||
|
var scrollorama = $.scrollorama({
|
||
|
blocks:'.curtains'
|
||
|
});
|
||
|
|
||
|
scrollorama.animate('#intro h1',{
|
||
|
duration:200, property:'left', end:-860
|
||
|
});
|
||
|
|
||
|
scrollorama.animate('#reset-photo',{
|
||
|
delay:900, duration:993, property:'top', start:300, end:-300
|
||
|
});
|
||
|
|
||
|
scrollorama.animate('#simio-photo',{
|
||
|
delay:993, duration:1986, property:'rotate', start:-10, end:10
|
||
|
});
|
||
|
|
||
|
scrollorama.animate('#pusset .btn',{
|
||
|
delay:2700, duration:993, property:'left', start:-800, easing:'easeOutBounce'
|
||
|
});
|
||
|
|
||
|
scrollorama.animate('#sakrecoer ul li:nth-child(1)',{
|
||
|
delay:2979, duration:993, property:'top', start:840, end: 690
|
||
|
});
|
||
|
scrollorama.animate('#sakrecoer ul li:nth-child(2)',{
|
||
|
delay:2979, duration:993, property:'top', start:800, end: 690
|
||
|
});
|
||
|
scrollorama.animate('#sakrecoer ul li:nth-child(3)',{
|
||
|
delay:2979, duration:993, property:'top', start:920, end: 630
|
||
|
});
|
||
|
scrollorama.animate('#sakrecoer ul li:nth-child(4)',{
|
||
|
delay:2979, duration:993, property:'top', start:880, end: 670
|
||
|
});
|
||
|
scrollorama.animate('#sakrecoer ul li:nth-child(5)',{
|
||
|
delay:2979, duration:993, property:'top', start:830, end: 710
|
||
|
});
|
||
|
scrollorama.animate('#sakrecoer ul li:nth-child(6)',{
|
||
|
delay:2979, duration:993, property:'top', start:960, end: 650
|
||
|
});
|
||
|
|
||
|
scrollorama.animate('#final h2',{
|
||
|
delay:4500, duration:900, property:'top', start:0, easing:'easeOutBounce'
|
||
|
});
|
||
|
});
|