gpt4 book ai didi

javascript - 当鼠标悬停在某个元素上时,则在该元素下显示其他元素

转载 作者:行者123 更新时间:2023-12-05 05:30:56 25 4
gpt4 key购买 nike

我正在创建一个网上商店,我想用图像和像网上商店一样的“图像颜色转换器”制作一个好的动画。

我希望当您将鼠标移到图像上方时,它会显示一个带点的条形图,并且颜色会发生变化。

我已经配置了图像和箭头以在图像和图像下方的点之间切换,但我只想在鼠标位于上方时显示点。

Something like this

我有这个,但我不知道在哪里以及如何编写代码来做到这一点。

let slideIndex = 1;
showSlides(slideIndex);

// Next/previous controls
function plusSlides(n) {
showSlides(slideIndex += n);
}

// Thumbnail image controls
function currentSlide(n) {
showSlides(slideIndex = n);
}

function showSlides(n) {
let i;
let slides = document.getElementsByClassName("mySlides");
let dots = document.getElementsByClassName("dot");
if (n > slides.length) {
slideIndex = 1
}
if (n < 1) {
slideIndex = slides.length
}
for (i = 0; i < slides.length; i++) {
slides[i].style.display = "none";
}
for (i = 0; i < dots.length; i++) {
dots[i].className = dots[i].className.replace(" active", "");
}
slides[slideIndex - 1].style.display = "block";
dots[slideIndex - 1].className += " active";
}
* {
box-sizing: border-box
}


/* Slideshow container */

.slideshow-container {
max-width: 1000px;
position: relative;
margin: auto;
}


/* Hide the images by default */

.mySlides {
display: none;
}


/* Next & previous buttons */

.prev,
.next {
cursor: pointer;
position: absolute;
top: 50%;
width: auto;
margin-top: -22px;
padding: 16px;
color: white;
font-weight: bold;
font-size: 18px;
transition: 0.6s ease;
border-radius: 0 3px 3px 0;
user-select: none;
}


/* Position the "next button" to the right */

.next {
right: 0;
border-radius: 3px 0 0 3px;
}


/* On hover, add a black background color with a little bit see-through */

.prev:hover,
.next:hover {
background-color: rgba(0, 0, 0, 0.8);
}


/* Caption text */

.text {
color: #f2f2f2;
font-size: 15px;
padding: 8px 12px;
position: absolute;
bottom: 8px;
width: 100%;
text-align: center;
}


/* Number text (1/3 etc) */

.numbertext {
color: #f2f2f2;
font-size: 12px;
padding: 8px 12px;
position: absolute;
top: 0;
}


/* The dots/bullets/indicators */

.dot {
cursor: pointer;
height: 10px;
width: 10px;
margin: 0 2px;
background-color: #bbb;
border-radius: 50%;
display: inline-block;
transition: background-color 0.6s ease;
}

.active,
.dot:hover {
background-color: #717171;
}
<!-- Slideshow container -->
<div class="slideshow-container">

<!-- Full-width images with number and caption text -->
<div class="mySlides fade">
<div class="numbertext">1 / 4</div>
<img src="https://imgur.com/cO9OxGF.png" style="width:100%">
</div>

<div class="mySlides fade">
<div class="numbertext">2 / 4</div>
<img src="https://imgur.com/mN2ZEE5.png" style="width:100%">
</div>

<div class="mySlides fade">
<div class="numbertext">3 / 4</div>
<img src="https://imgur.com/l1Q0Irp.png" style="width:100%">
</div>

<div class="mySlides fade">
<div class="numbertext">4 / 4</div>
<img src="https://imgur.com/2qQaYoG.png" style="width:100%">
</div>

<!-- Next and previous buttons -->
<a class="prev" onclick="plusSlides(-1)">&#10094;</a>
<a class="next" onclick="plusSlides(1)">&#10095;</a>
</div>
<br>

<!-- The dots/circles -->
<div style="text-align:center">
<span class="dot" onclick="currentSlide(1)" mouseenter=""></span>
<span class="dot" onclick="currentSlide(2)"></span>
<span class="dot" onclick="currentSlide(3)"></span>
<span class="dot" onclick="currentSlide(4)"></span>
</div>

最佳答案

通过正确组合 CSS 选择器,这不是问题。

.slideshow-container:not(:hover) ~ div {
visibility: hidden
}

此选择器将定位所有前面带有幻灯片容器类元素且未悬停的 div。

意思是,您不将鼠标悬停在图片上,图片后面的 div 将被选中,并且可见性设置为隐藏 - 当您将鼠标悬停在图片上时,选择器现在不会选择图片后面的 div,这意味着可见性隐藏样式现在不适用。

唯一的问题是,如果您想点击现在出现的栏,您将不得不停止将鼠标悬停在图片上,从而再次隐藏该栏。要解决此问题,您可以只使用一个直接针对 div 的选择器(并在悬停时防止它被隐藏)

关于javascript - 当鼠标悬停在某个元素上时,则在该元素下显示其他元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/74507746/

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