通过 Jquery 保持:鼠标单击时悬停颜色
我想要实现的是,当用户单击链接时,单击的按钮保持颜色,并且当鼠标移出悬停状态时不会淡出。
如果可能的话,一次只有一个按钮接收点击颜色。
任何帮助表示赞赏!底部有一个 JS Fiddle 的链接。
HTML
<ul>
<li><a href="#" class="slide">1</a></li>
<li><a href="#" class="slide">2</a></li>
<li><a href="#" class="slide">3</a></li>
<li><a href="#" class="slide">4</a></li>
</ul>
CSS
.slide {
padding:20px 20px 20px 20px;
margin:20px;
background-color:#999;
}
ul li {
float:left;
}
Jquery
$('.slide').click(function() {
$(this).css("background-color", "#f09");
});
$('.slide').hover(function() {
$(this).animate({
backgroundColor: '#000'
}, 300);
}, function() {
$(this).animate({
backgroundColor: '#999'
}, 200);
});
JS 小提琴链接
What I want to achieve is when users clicks on a link is for the button clicked to stay the color and not fade out when the mouse moves out of hover state.
If possible only one button receive the click color at a time.
Any help is appreciated! There is a link to JS Fiddle at the bottom.
HTML
<ul>
<li><a href="#" class="slide">1</a></li>
<li><a href="#" class="slide">2</a></li>
<li><a href="#" class="slide">3</a></li>
<li><a href="#" class="slide">4</a></li>
</ul>
CSS
.slide {
padding:20px 20px 20px 20px;
margin:20px;
background-color:#999;
}
ul li {
float:left;
}
Jquery
$('.slide').click(function() {
$(this).css("background-color", "#f09");
});
$('.slide').hover(function() {
$(this).animate({
backgroundColor: '#000'
}, 300);
}, function() {
$(this).animate({
backgroundColor: '#999'
}, 200);
});
JS Fiddle Link
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
像下面这样更改代码应该可行。
在您的代码中,当您设置动画悬停时,您将覆盖背景颜色。
您需要做的就是设置一个标志,以确保这种情况不会发生。单击该元素时,我添加一个类来设置其样式,这也充当标志以确保悬停时颜色不会改变。
你的CSS需要有
更新的小提琴: http://jsfiddle.net/wNTs7/23/
Changing your code like the following should work.
In your code you're overwriting the background colour when you set the animated hover.
All you need to do is set a flag, to ensure this doesn't happen. When the element is clicked, I add a class to set its style, this also acts as a flag to ensure the colour doesn't change on hover.
You css would need to have
Updated fiddle: http://jsfiddle.net/wNTs7/23/
请参阅此版本了解一种方法:
这也解决了动画“覆盖”您设置的颜色的问题。
这是示例代码 - 根据需要进行更改:
希望这会有所帮助。
See this version for one way to do it:
This also solves the problem of animation "overwriting" your set color.
Here's the example code - change as needed:
Hope this helps.
此版本适用于鼠标悬停:
JS:
HTML:
This version for on mouse over:
JS:
HTML: