Advertisement
Guest User

Untitled

a guest
Apr 19th, 2014
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 KB | None | 0 0
  1. function projtheme() {
  2. var proj_title = document.getElementById("ring_1");
  3. proj_title.style.animation = "none";
  4. proj_title.style.WebkitAnimation = "none";
  5. proj_title.style.transform = "rotate(720deg)";
  6. proj_title.style.WebkitTransform = "rotate(720deg)";
  7. proj_title.style.opacity = "0.1";
  8. }
  9.  
  10. function projtheme_exit() {
  11.  
  12. var proj_title = document.getElementById("ring_1");
  13. proj_title.style.animation = "spin_cw 60s linear infinite";
  14. proj_title.style.WebkitAnimation = "spin_cw 60s linear infinite";
  15. proj_title.style.transform = "rotate(0deg)";
  16. proj_title.style.WebkitTransform = "rotate(0deg)";
  17. proj_title.style.opacity = "0.6";
  18. }
  19.  
  20. <span id="projbtn" onmouseout="projtheme_exit();" onmouseover="projtheme();"></span>
  21.  
  22. #ring_1{
  23. position: absolute;
  24. top: 50%;
  25. left: 50%;
  26.  
  27. margin-top: -160px;
  28. margin-left: -150px;
  29.  
  30. opacity: 0.6;
  31.  
  32. display:block;
  33.  
  34. animation: spin_cw 60s linear infinite;
  35. -webkit-animation: spin_cw 60s linear infinite;
  36.  
  37. transition: all 0.5s ease;
  38.  
  39. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement