index.html 685 B

12345678910111213141516171819202122232425262728
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>Document</title>
  8. <style>
  9. body{
  10. height:2000px;
  11. }
  12. </style>
  13. </head>
  14. <body>
  15. <input type="text">
  16. <script src="./src/bind.js"></script>
  17. <script>
  18. window.addEventListener('scroll',throttle(function(e){
  19. console.log(e)
  20. },500))
  21. let input = document.querySelector('input')
  22. input.onkeydown = debounce(function(e){
  23. console.log(e.keyCode)
  24. },1000)
  25. </script>
  26. </body>
  27. </html>