欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Jquery 点击按钮自动高亮实现原理及代码

程序员文章站 2023-11-23 18:41:34
其实原理很简单,我们点击的时候我们给元素加上一个自定义的attr,加上后便会有有一个匹配的样式去自动适配背景,几秒后去掉该样式恢复原状 首先在自己的js中拓展一个方法hove...

其实原理很简单,我们点击的时候我们给元素加上一个自定义的attr,加上后便会有有一个匹配的样式去自动适配背景,几秒后去掉该样式恢复原状

首先在自己的js中拓展一个方法hoverel

. 代码如下:


$.extend($.fn, {
hoverel:function(){

var _this = $(this);
var _t = settimeout(function(){
_this.attr("hover", "on");
}, 10);
_this.attr("hovertimeout", _t);

settimeout(function(){
cleartimeout( _this.attr("hovertimeout") );
var _t = settimeout(function(){
_this.removeattr("hover");
}, 100);
_this.attr("hovertimeout", _t);
},200);

}
});


其次定义样式,当特定attr被加上时

. 代码如下:


li[hover=on]{
background-image:-webkit-gradient(linear, 0% 100%, 0% 0%, from(#194fdb), to(#4286f5))!important;
background-image: -webkit-linear-gradient(top, #4286f5, #194fdb)!important;
color: white!important;
cursor: pointer!important;
}


调用示例:

. 代码如下:


$(e.target).hoverel();