Advertisement
Guest User

Untitled

a guest
Apr 27th, 2017
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5. </head>
  6. <body>
  7.  
  8. <a href ='#' id = 'title'> Сладости (нажми, друг)!
  9.     <span id = 'arrowClosed' ></span>
  10.     <span id = 'arrowOpened' style = display:none; ></span>
  11.  
  12. </a>
  13.  
  14. <ul id="list" style="display: none;">
  15.         <li>Торт</li>
  16.         <li>Пончик</li>
  17.         <li>Пирожное</li>
  18. </ul>
  19.  
  20. <script>
  21.  
  22.     document.querySelector('#title').addEventListener('click',function(event) {
  23.         var target = event.target;
  24.  
  25.         target.classList.toggle('active');
  26.  
  27.         if(target.classList.contains('active')) {
  28.             document.querySelector('#arrowClosed').style.display = 'none';
  29.             document.querySelector('#arrowOpened').style.display = 'inline-block';
  30.             document.querySelector('#list').style.display = 'block';
  31.  
  32.         } else {
  33.  
  34.             document.querySelector('#arrowClosed').style.display = 'inline-block';
  35.             document.querySelector('#arrowOpened').style.display = 'none';
  36.             document.querySelector('#list').style.display = 'none';
  37.  
  38.         }
  39.     })
  40. </script>
  41.  
  42.  
  43.  
  44. </body>
  45. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement