mouseOver.html 604 B

1234567891011121314151617
  1. <!DOCTYPE html>
  2. <body style="margin: 0; padding: 0;">
  3. <div style="position: absolute; overflow: hidden;
  4. left: 0; top: 0; width: 250px; height: 250px;
  5. background: green"
  6. id="greenbox">
  7. <div style="position: relative; left: 75px; top: 75px;
  8. width: 75px; height: 75px;
  9. background: green"
  10. id="redbox">
  11. </div>
  12. <script>
  13. var redbox = document.getElementById('redbox');
  14. redbox.onmouseover = function() { redbox.style.background = 'red'; };
  15. redbox.onmouseout = function() { redbox.style.background = 'green'; };
  16. </script>
  17. </div>