Advertisement
Regeneric

Untitled

Sep 23rd, 2020
1,121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. const one = document.querySelector(".one");
  2. const two = document.querySelector(".two");
  3.  
  4. one.addEventListener("mouseenter", () => {
  5.     two.style.opacity = 1;
  6.     two.style.transition = "3s";
  7. });
  8.  
  9. one.addEventListener("mouseleave", () => {
  10.   two.style.transition = "0s";
  11.   two.style.opacity = 0;
  12. });
  13.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement