Advertisement
Guest User

Untitled

a guest
Aug 24th, 2016
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. window.onload = setPictures;
  2.  
  3. function setPictures() {
  4. var img = document.getElementsByClassName('image');
  5. for (var i=0; i<img.length; i++) {
  6. img[i].onmouseover = function() {
  7. this.src = mouseOn.jpg;
  8. this.style.opacity = .7;}
  9. }
  10. }
  11.  
  12. function setPictures() {
  13. var img = document.getElementsByClassName('image');
  14. var desc = document.getElementsByClassName('description');
  15. for (var i=0; i<img.length; i++) {
  16. img[i].onmouseover = function() {
  17. this.src = mouseOn.jpg;
  18. this.style.opacity = .7;
  19. disc[i].style.borderColor="#0e3e09";}
  20. }
  21. }
  22.  
  23. disc[1].style.borderColor="#0e3e09";
  24. disc[2].style.borderColor="#0e3e09";
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement