SCSS .reference { &__content-6ren">
gpt4 book ai didi

html - SCSS 如何在鼠标悬停时显示此结果

转载 作者:行者123 更新时间:2023-11-28 01:03:40 25 4
gpt4 key购买 nike

我如何编写 SCSS 代码以在悬停时显示类似左图的内容。

HTML

<div class="col-md-4 col-sm-6">
<div class="reference__content--item">
<img src="{{ asset($reference->photo->file) }}">
</div>
</div>

SCSS

.reference {
&__content {
margin-bottom: 30px;
&--item {
background-color: transparent;
img {
margin-top: 30px;
&:hover {
background-color: #0000AA;
}
}
}
}
}

Example

最佳答案

我已经检查了你的代码,现在它可以正常工作了。

html:

    <div class="col-md-4 col-sm-6">
<div class="reference__content--item">
<img src="{{ asset($reference->photo->file) }}">
<div class="overlay"></div>
</div>
</div>

scss:

    .reference {
&__content {
&--item {
position: relative;
display: inline-block;
img {
margin-top: 30px;
&:hover {
background-color: #0000AA;
}
}
.overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(0, 0, 255, 0.6);
z-index: 9999;
color: white;
visibility: hidden;
}

// you have to use just the "&" sign instead of reference__content--item
&:hover>.overlay {
visibility: visible;
}
}
&--title {
font-size: 18px;
}
}
}

关于html - SCSS 如何在鼠标悬停时显示此结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40949696/

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