Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

README.md

JS30-Day16-CSS Text Shadow Mouse Move Effect

一個滑鼠移動時產生特效的實作

重點整理

1. this vs. e.target

this: 被監聽的元素本身,例如:

hero.addEventListener('mousemove', shadow);

shadow函式內,this 在此為 hero

e.target: 指事件被觸發時的對象