Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
Или же Pause Resume AnimationjQuery(document).ready(function(){
jQuery('#crac').animate({
opacity: 0.99,
right: '+=100',
}, 15000, function() {
// Animation complete.
});
});
нужно чтоб скрипт ждал секунд 5 и двигал картинку
<script type="text/javascript">
jQuery(document).ready(function(){
jQuery('#crac').delay(2800).fadeIn();
jQuery('#crac').animate({
opacity: 0.99,
right: '+=100',
}, 500, function() {
// Animation complete.
});
});
</script>
1)Так она работать не будет, т.к. служит паузой для эффектов и влияет на их очередь выполенияваще не двигаеться..PHP:<script type="text/javascript"> jQuery(document).ready(function(){ jQuery('.crac').delay(2800).fadeIn(); jQuery('#crac').animate({ opacity: 0.99, right: '+=100', }, 500, function() { // Animation complete. }); }); </script>
setTimeout('func()', 2800);