View Full Version : Image blur


brattattak
07-27-2005, 09:18 AM
Whats the code that make the image blur when you hover over it?

kittycat
07-27-2005, 04:29 PM
<img src="image.gif" onMouseOver="this.style.filter='blur';" onMouseOut="this.style.filter='none';">

brattattak
07-28-2005, 02:12 AM
thank you