Advertisement
Guest User

Untitled

a guest
Sep 19th, 2018
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. <script type="text/javascript">
  2. let btn = document.getElementsByClassName('slicknav_btn');
  3. let tohighlight = document.getElementsByClassName('slicknav_nav');
  4. let allothers = document.getElementsByTagName('div');
  5.  
  6. btn.addEventListener('click', function(){
  7.  
  8. for(let i = 0; i < allothers.length; i++){
  9. allothers[i].style.opacity = "0.3";
  10. allothers[i].style.background = "#dedede";
  11. }
  12.  
  13. for (let i = 0; i < tohighlight.length; i++){
  14. tohighlight[i].style.opacity = "1";
  15. tohighlight[i].style.background = "#98FB98";
  16.  
  17. }
  18. });
  19. </script>
  20.  
  21. <div id="slick-mobile-menu">
  22. <div class="slicknav_menu">
  23. <a href="#" aria-haspopup="true" role="button" tabindex="0" class="slicknav_btn slicknav_open" style="outline: none;">click me</a>
  24. <div class="slicknav_nav"></div>
  25. </div>
  26. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement