css demofunction zap(){//定义产生发光效果的函数
//如果已经在发光状态,则取消发光
if(myimg.filters.glow.enabled==1){
myimg.filters.glow.enabled=0;
}
//如果不发光,则开始发光
if(myimg.filters.blendTrans.status==0){
myimg.filters.blendTrans.apply();
myimg.filters.glow.enabled=1
myimg.filters.blendTrans.play();
}
}
style="filter:glow(color=#ffff00,strength=20,enabled=0)
blendTrans(duration=2);FONT-SIZE:35px;HEIGHT:200px;text-Align:center;">
发光的文字
当鼠标点击文字时,文字会发光,再点击,发光消失。
标签:彩字,代码
版权声明:文章由 知识百问 整理收集,来源于互联网或者用户投稿,如有侵权,请联系我们,我们会立即处理。如转载请保留本文链接:https://www.zhshbaiwen.com/life/331564.html