Advertisement
Guest User

Untitled

a guest
Jul 7th, 2015
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. $(document).ready(function() {
  2. $('li:first').animate({ 'background-color': "#FF9900", "opacity": "0.5" }, 1900).queue(function() {
  3. $(this).css({ 'background': '', "opacity": "" })
  4. })
  5. })
  6.  
  7. $(document).ready(function() {
  8. setTimeout(function() {
  9. $('li:first').animate({ 'background-color': "#FF9900", "opacity": "0.5" }, 1900).queue(function () {
  10. $(this).css({ 'background': '', "opacity": "" })
  11. })
  12. }, 100);
  13. })
  14.  
  15. window.onload = function () {
  16. //тут анимация ваша
  17. }
  18.  
  19. $( window ).load(function() {
  20. // Run code
  21. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement