Guest User

Untitled

a guest
May 25th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <script type="text/javascript">
  5.  
  6. function load()
  7. {
  8. var foo = document.getElementById("foo"),
  9. bar = document.getElementById("bar"),
  10. baz = document.getElementById("baz");
  11.  
  12. baz.contentDocument.write("<!DOCTYPE html><html><head></head><body><div style='height:1000px; background-color:yellow;'></div></body></html>");
  13. window.addEventListener("DOMMouseScroll", mouseWheel, true);
  14. window.addEventListener("mousewheel", mouseWheel, true);
  15. }
  16.  
  17. function mouseWheel(anEvent)
  18. {
  19. console.log("wheel: "+anEvent);
  20. }
  21.  
  22. </script>
  23. </head>
  24. <body onload="load();">
  25. <div id="foo" style="width:500px; height:300px; background-color:red;">
  26. <div id="bar" style="width:400px; height:200px; top: 50px; left: 50px; position: absolute; background-color:blue;">
  27. <iframe id="baz" style="width:100%; height:100%" scrolling="no"></iframe>
  28. </div>
  29. </div>
  30. </body>
  31. </html>
Add Comment
Please, Sign In to add comment