homework02.html 873 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title></title>
  6. <style>
  7. #adv {
  8. width: 200px;
  9. height: 200px;
  10. background-color: blue;
  11. color: yellow;
  12. position: fixed;
  13. right: 50px;
  14. top: 50px;
  15. }
  16. #adv button {
  17. float: right;
  18. }
  19. </style>
  20. </head>
  21. <body>
  22. <div id="adv">
  23. <button>关闭</button>
  24. </div>
  25. <script src="js/mylib.js"></script>
  26. <script>
  27. +function() {
  28. var urls = ['https://www.baidu.com', 'https://www.360.cn/'];
  29. var btn = document.querySelector('#adv button');
  30. var numberOfHits = 0;
  31. bind(btn, 'click', function() {
  32. if (numberOfHits < 2) {
  33. window.open(urls[numberOfHits]);
  34. // $('adv').style.backgroundColor = 'rgba(120, 50, 80, 0.5)';
  35. } else {
  36. $('adv').style.visibility = 'hidden';
  37. }
  38. numberOfHits += 1;
  39. });
  40. }();
  41. </script>
  42. </body>
  43. </html>