我是靠谱客的博主 洁净纸飞机,最近开发中收集的这篇文章主要介绍鼠标放上去超链接的文字逐个加色效果,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

link.htc

复制代码 代码如下:

<public:component>
<public:attach event="onmouseover" onevent="domouseover()">
<public:attach event="onmouseout" onevent="domouseout()">
<script language="javascript">
function domouseover(){
with(element)
{filters.item(0).Apply();filters.item(0).Play();}}
function domouseout(){
with(element){
filters.item(0).Apply();
filters.item(0).Play();}}
</script>
</public:component>

css文件中的调用方法
复制代码 代码如下:

A {
    FILTER: progid:dximagetransform.microsoft.gradientwipe(duration=1); BEHAVIOR: url(jcss/link.htc); HEIGHT: 1px; TEXT-DECORATION: none
}

最后

以上就是洁净纸飞机为你收集整理的鼠标放上去超链接的文字逐个加色效果的全部内容,希望文章能够帮你解决鼠标放上去超链接的文字逐个加色效果所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(152)

评论列表共有 0 条评论

立即
投稿
返回
顶部