作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已经设置了一个 sprite 悬停事件和路点 Jquery 事件,这些事件根据我的主导航菜单上的 anchor /滚动更改 css -
jfiddle 示例可以在这里找到:http://jsfiddle.net/LhLpm39p/17/
$('#news').waypoint(function (direction) {
if (direction === 'up') {
$('#news-menu').css({
"background-position": "0 0",
"color": "#fff"
});
}
}, {
offset: '100%'
}).waypoint(function (direction) {
if (direction === 'down') {
$('#news-menu').css({
"background-position": "0 100%",
"color": "#00a4f0"
});
}
}, {
offset: '50%'
}).waypoint(function (direction) {
if (direction === 'down') {
$('#news-menu').css({
"background-position": "0 0",
"color": "#fff"
});
}
}, {
offset: '0%'
});
在您点击任何导航之前,悬停效果很好,但是一旦您点击一个导航并触发航路点,悬停就会被禁用!
请问我该如何纠正?
最佳答案
这可能是 CSS 特异性问题之一。只需用 !important
装饰即可。这应该可以解决问题:
.menu:hover {
background: url("http://www.solidbackgrounds.com/images/two/950x350/950x350-vegas-gold-venetian-red-two-color-background.jpg") 0 100%!important;
color: #00a4f0!important;
}
关于jquery - 航点事件后悬停禁用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28189769/
我是一名优秀的程序员,十分优秀!