Posted in Javascript onApril 25, 2014
其实原理很简单,我们点击的时候我们给元素加上一个自定义的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();
Jquery 点击按钮自动高亮实现原理及代码
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@