css动态模糊效果
程序员文章站
2024-02-27 19:39:21
实例效果:请把鼠标放上去看看
第一步:把下面的脚本插入与
实例效果:请把鼠标放上去看看
第一步:把下面的脚本插入<head>与</head>之间:
<script>
function on(she){
girl=she
move=setinterval("moving(girl)",50)}
function off(she){
clearinterval(move)
she.filters.blur.strength=2 }
function moving(s){
if (s.filters.blur.strength<110)
s.filters.blur.strength+=5
else clearinterval(move)}
</script>
第二步:把下面的脚本插入<body>与</body>之间:
<p><a href="../index.htm"><img src="c.jpg" width="200" height="138"
style="position:absolute;top:70;left:390;filter:blur(add=1,direction=80,strength=2)"
onmouseover="on(this)" onmouseout="off(this)" width="337" height="87" border="0"></a> </p>
上一篇: 拟牛顿法实现(Python)
下一篇: 牛顿迭代法及应用