龙盟编程博客 | 无障碍搜索 | 云盘搜索神器
快速搜索
主页 > web编程 > div+css/html >

css 静态滤镜与动态滤镜实现方法

时间:2012-12-29 08:41来源:未知 作者:admin 点击:
分享到:
静态滤镜与动态滤镜实现方法 !doctype html public -//w3c//dtd html 4.0 transitional//en html head titlenew document/title style type=text/css教程 !-- div#div1 { width:200px;height:60px;padding:10px;border:1px solid #666;color:#

静态滤镜与动态滤镜实现方法

<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
<title>new document</title>
<style type="text/css教程">
<!--
div#div1
{
 width:200px;height:60px;padding:10px;border:1px solid #666;color:#000;
 filter : progid:dximagetransform.microsoft.shadow(color=#000000,direction=135,strength=5);
}
-->
</style>
</head>
<body>
<div id="div1">
drops教程hadow滤镜效果
</div>
</body>
</html>

动态滤镜实现方法

<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
<title>new document</title>
<style type="text/css">
<!--
div#div1 { height:240px;filter:blendtrans(duration=1);}
-->
</style>
</head>
<body>
<div id="div1">
<img src="1.jpg" alt=""/>
</div>
<input type="button" value="play" onclick="play()"/>
</body>
</html>
<script language="网页特效" type="text/javascript">
<!--
function play(){
 var div1=document.getelementbyid("div1");
 div1.filters[0].apply();
 div1.innerhtml="<img src='2.jpg' alt=''/>";
 div1.filters[0].play();
}
//-->
</script>
 


精彩图集

赞助商链接