gpt4 book ai didi

javascript - jQuery 悬停效果 for::after

转载 作者:行者123 更新时间:2023-11-28 04:51:48 25 4
gpt4 key购买 nike

当我将鼠标悬停在 div 上时,我会触发多种效果。问题是 div 还具有伪元素::after,它使用内容 CSS 规则用虚拟元素(播放按钮)填充 div。

当我将鼠标悬停在 div 的任何部分(除::after 元素所在的空间之外)时,我的悬停效果会起作用。

简单地说,我想知道是否有一种方法可以使用 jQuery 指向::after 元素。我尝试将::after 元素定义为名为“play”的变量,但也没有运气。这是我的脚本:

var play = $('a.image-wrap::after');

$(".image-holder, .big-headline a, .small-headline a, play").on({mouseenter: function () {
$('.image-holder').css('background-color', color);
$('.image-holder img').css({
'mix-blend-mode': 'multiply',
opacity: .6
});
if ($(window).width() > 1115) {
$('.read').css('right', '35%');
} else {
$('.read').css('right', '0');
}
},
mouseleave: function () {
$('.image-holder').css('background-color', '');
$('.image-holder img').css({
'mix-blend-mode': '',
opacity: ''
});
$('.read').css('right', '');
}
});

最佳答案

如果您只是将新的 CSS 添加到样式中,然后在悬停完成后将其删除,会怎么样?它工作得很好:

$(".example").on("mouseenter", function () {
$("#workAround").html(".example:after {background:pink}");
}).on("mouseleave", function () {
$("#workAround").html("");
});
.example {
height:10px;
width:100px;
background:green;
margin:20px 0 20px 0;
}

.example:after {
content:'';
background:red;
height:10px;
width:100%;
display: block;
position:relative;
bottom:-10px;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<style id="workAround"></style>
<div class="example"></div>

关于javascript - jQuery 悬停效果 for::after,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42862188/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com