Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. <a href="" title="ТЕКСТ"><div class="article9">
  2. <img src="/images/logo.png" alt="текст">
  3. <for>Какой-то текст</for>
  4. </div></a>
  5.  
  6. function setNewYearBg() {
  7. var now = new Date(),
  8. month = now.getMonth(),
  9. day = now.getDate(),
  10. if( (month == 11 && day >= 25) || (month == 11 && day <= 28 ) ) {
  11.  
  12. }
  13. else if( (month == 11 && day == 29 ) ) {
  14. document.body.classList.add('newyear_sunset');
  15. }
  16. }
  17.  
  18. setNewYearBg();
  19.  
  20. .article9 {
  21. url(www.google.ru);
  22. ...
  23. }
  24.  
  25. .article9:hover {
  26. url(www.google.ru);
  27. ...
  28. }
  29.  
  30. .article9 for {
  31. ...
  32. }
  33.  
  34. .article9:hover for {
  35. ...
  36. }
  37.  
  38. .article9>img {
  39. ...
  40. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement