如何将活动类应用于带有多个图像的 div 中的图像?Jquery

huangapple go评论63阅读模式
英文:

How to apply an active class to image in a div with more images? Jquery

问题

这段代码用于创建一个小画廊。当鼠标悬停在图像上时,会出现一个包含缩略图的菜单。当鼠标悬停在缩略图上时,主要区域会显示相应的图像,但一旦鼠标离开缩略图,图像就会隐藏。

您想要实现的是,当单击缩略图时,相应的图像变为可见。为此,您需要创建一个名为.images img.active的活动类。以下是如何将其添加到您的jQuery代码中:

// Mouse Click
cat.on('click', function() {
  const indexcat = cat.index(this)
  $(".images img.show").removeClass("show");
  $(".images img").eq(indexcat).addClass("show").addClass("active"); // Add the 'active' class
});

在上述代码中,我们添加了一个鼠标单击事件处理程序,以便在单击缩略图时将active类添加到相应的图像。这样,您就可以使用.images img.active来选择当前可见的图像。

英文:

I have this code for a small gallery. When the mouse is placed over the image, a menu with thumbnails will appear. When the mouse passes over one of the thumbnails the corresponding image will be visible in the main div but once the mouse leaves the thumbnail the image will be hidden.

What I'm looking for is that when clicking on a thumbnail the corresponding image is visible. For that create an active class .images img.active. I would like to know how to add it to my jquery code.

<!-- begin snippet: js hide: false console: true babel: false -->

<!-- language: lang-js -->

// Mouse Enter
const cat = $(&quot;.thumbnails img&quot;)
cat.on(&#39;mouseenter&#39;, function() {
  const indexcat = cat.index(this)
  $(&quot;.images img.show&quot;).removeClass(&quot;show&quot;);
  $(&quot;.images img&quot;).eq(indexcat).addClass(&quot;show&quot;);
});

// Mouse Leave
cat.on(&#39;mouseleave&#39;, function() {
  const indexcat = cat.index(this)
  $(&quot;.images img.show&quot;).addClass(&quot;show&quot;);
  $(&quot;.images img&quot;).eq(indexcat).removeClass(&quot;show&quot;);
});

<!-- language: lang-css -->

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
.display {
  display: flex;
  width: 740px;
  height: 404px;
  background: silver;
  position: relative;
}
.images img {
  position: absolute;
  opacity: 0;
  transition: all 300ms linear;
}
.images img.show,
.images img.active { 
  opacity: 1;
  transition: .5s linear;
}
.thumbnails {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.7);
  width: 100%;
  padding: 20px;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .5s ease;
}
.thumbnails img {
  margin-left: 5px;
  margin-right: 5px;
  border: 1px solid;
  border-color: transparent;
  transition: opacity .5s ease;
  opacity: .55;
}
.thumbnails img:hover {
  border-color: red;
  opacity: 1;
  cursor: pointer;
}
.display:hover .thumbnails {
  opacity: 1;
}
body {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  background: #000116;
}
img {
  width: 100%;
  height: 100%;
}

<!-- language: lang-html -->

&lt;div class=&quot;display&quot;&gt;
  &lt;div class=&quot;images&quot;&gt;
    &lt;img class=&quot;active&quot; src=&quot;https://i.imgur.com/Gnn5LiQ.jpeg&quot; alt=&quot;&quot;&gt;
    &lt;img src=&quot;https://i.imgur.com/stUEge9.jpg&quot; alt=&quot;&quot;&gt;
    &lt;img src=&quot;https://i.imgur.com/rhn41AJ.jpg&quot; alt=&quot;&quot;&gt;
    &lt;img src=&quot;https://i.imgur.com/E8AoMAw.jpg&quot; alt=&quot;&quot;&gt;
  &lt;/div&gt;
  &lt;div class=&quot;thumbnails&quot;&gt;
                  &lt;img src=&quot;https://i.imgur.com/Gnn5LiQ.jpegg&quot; alt=&quot;&quot;  style=&quot;width: 100px; height: auto;&quot;&gt;
    &lt;img src=&quot;https://i.imgur.com/stUEge9.jpg&quot; alt=&quot;&quot; style=&quot;width: 100px; height: auto;&quot;&gt;
    &lt;img src=&quot;https://i.imgur.com/rhn41AJ.jpg&quot; alt=&quot;&quot;  style=&quot;width: 100px; height: auto;&quot;&gt;
    &lt;img src=&quot;https://i.imgur.com/E8AoMAw.jpg&quot; alt=&quot;&quot;  style=&quot;width: 100px; height: auto;&quot;&gt;
&lt;/div&gt;
  
 &lt;script src=&quot;https://ajax.googleapis.com/ajax/libs/jquery/3.6.4/jquery.min.js&quot;&gt;&lt;/script&gt;

<!-- end snippet -->

答案1

得分: 1

这是你可以做的方法:

  • 点击事件绑定到缩略图图像,在事件处理程序函数中删除活动类,并在单击的图像上添加活动类
  • 为具有“show”类的图像提供更高的z-index。这样,它将显示在活动图像上方。例如:给定z-index: 1
  • 最后,为具有“thumbnails”类的div提供更高的z-index,以便它始终位于活动图像和显示图像的顶部。例如:给定z-index: 2

以下是更新后的代码:

<!-- begin snippet: js hide: false console: true babel: false -->

<!-- language: lang-js -->

// Mouse Enter
const cat = $(".thumbnails img")
cat.on('mouseenter', function() {
  const indexcat = cat.index(this)
  $(".images img.show").removeClass("show");
  $(".images img").eq(indexcat).addClass("show");
});

// Mouse Leave
cat.on('mouseleave', function() {
  const indexcat = cat.index(this)
  $(".images img").eq(indexcat).removeClass("show");
  $(".images img.show").addClass("show");
});

// Click
cat.on('click', function() {
  const indexcat = cat.index(this);
  // Remove the active img
  $(".images img.active").removeClass("active");
  $(".images img").eq(indexcat).addClass("active");
});


<!-- language: lang-css -->

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
.display {
  display: flex;
  width: 740px;
  height: 404px;
  background: silver;
  position: relative;
}
.images img {
  position: absolute;
  opacity: 0;
  transition: all 300ms linear;
}
.images img.show,
.images img.active { 
  opacity: 1;
  transition: .5s linear;
}

.images img.show{
   z-index: 1;
}

.thumbnails {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.7);
  width: 100%;
  padding: 20px;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .5s ease;
}
.thumbnails img {
  margin-left: 5px;
  margin-right: 5px;
  border: 1px solid;
  border-color: transparent;
  transition: opacity .5s ease;
  opacity: .55;
}
.thumbnails img:hover {
  border-color: red;
  opacity: 1;
  cursor: pointer;
}
.display:hover .thumbnails {
  opacity: 1;
  z-index: 2;
}
body {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  background: #000116;
}
img {
  width: 100%;
  height: 100%;
}

<!-- language: lang-html -->

<div class="display">
  <div class="images">
    <img class="active" src="https://i.imgur.com/Gnn5LiQ.jpeg" alt="">
    <img src="https://i.imgur.com/stUEge9.jpg" alt="">
    <img src="https://i.imgur.com/rhn41AJ.jpg" alt="">
    <img src="https://i.imgur.com/E8AoMAw.jpg" alt="">
  </div>
  <div class="thumbnails">
                  <img src="https://i.imgur.com/Gnn5LiQ.jpegg" alt=""  style="width: 100px; height: auto;">
    <img src="https://i.imgur.com/stUEge9.jpg" alt="" style="width: 100px; height: auto;">
    <img src="https://i.imgur.com/rhn41AJ.jpg" alt=""  style="width: 100px; height: auto;">
    <img src="https://i.imgur.com/E8AoMAw.jpg" alt=""  style="width: 100px; height: auto;">
</div>
  
 <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.4/jquery.min.js"></script>

<!-- end snippet -->

注意:这只是提供了已翻译的部分,不包括代码部分。如果需要代码的中文翻译,请提供具体的代码段。

英文:

Here is the way you can do it:-

  • Bind a click event with thumbnails images and in event handler function, remove the active class and then add the active class on the clicked image.
  • Give a higher z-index to image that has "show" class. So, it will show above the active image. For example: give z-index: 1.
  • Lastly give more higher z-index to div with class "thumbnails" so that it always on the top of both active and show image. For example: give z-index: 2.

Here is the updated code:-

<!-- begin snippet: js hide: false console: true babel: false -->

<!-- language: lang-js -->

// Mouse Enter
const cat = $(&quot;.thumbnails img&quot;)
cat.on(&#39;mouseenter&#39;, function() {
const indexcat = cat.index(this)
$(&quot;.images img.show&quot;).removeClass(&quot;show&quot;);
$(&quot;.images img&quot;).eq(indexcat).addClass(&quot;show&quot;);
});
// Mouse Leave
cat.on(&#39;mouseleave&#39;, function() {
const indexcat = cat.index(this)
$(&quot;.images img&quot;).eq(indexcat).removeClass(&quot;show&quot;);
$(&quot;.images img.show&quot;).addClass(&quot;show&quot;);
});
// Click
cat.on(&#39;click&#39;, function() {
const indexcat = cat.index(this);
// Remove the active img
$(&quot;.images img.active&quot;).removeClass(&quot;active&quot;);
$(&quot;.images img&quot;).eq(indexcat).addClass(&quot;active&quot;);
});

<!-- language: lang-css -->

* {
margin: 0px;
padding: 0px;
box-sizing: border-box;
}
.display {
display: flex;
width: 740px;
height: 404px;
background: silver;
position: relative;
}
.images img {
position: absolute;
opacity: 0;
transition: all 300ms linear;
}
.images img.show,
.images img.active { 
opacity: 1;
transition: .5s linear;
}
.images img.show{
z-index: 1;
}
.thumbnails {
position: absolute;
background-color: rgba(0, 0, 0, 0.7);
width: 100%;
padding: 20px;
bottom: 0;
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
transition: opacity .5s ease;
}
.thumbnails img {
margin-left: 5px;
margin-right: 5px;
border: 1px solid;
border-color: transparent;
transition: opacity .5s ease;
opacity: .55;
}
.thumbnails img:hover {
border-color: red;
opacity: 1;
cursor: pointer;
}
.display:hover .thumbnails {
opacity: 1;
z-index: 2;
}
body {
display: flex;
justify-content: center;
margin-top: 20px;
background: #000116;
}
img {
width: 100%;
height: 100%;
}

<!-- language: lang-html -->

&lt;div class=&quot;display&quot;&gt;
  &lt;div class=&quot;images&quot;&gt;
    &lt;img class=&quot;active&quot; src=&quot;https://i.imgur.com/Gnn5LiQ.jpeg&quot; alt=&quot;&quot;&gt;
    &lt;img src=&quot;https://i.imgur.com/stUEge9.jpg&quot; alt=&quot;&quot;&gt;
    &lt;img src=&quot;https://i.imgur.com/rhn41AJ.jpg&quot; alt=&quot;&quot;&gt;
    &lt;img src=&quot;https://i.imgur.com/E8AoMAw.jpg&quot; alt=&quot;&quot;&gt;
  &lt;/div&gt;
  &lt;div class=&quot;thumbnails&quot;&gt;
                  &lt;img src=&quot;https://i.imgur.com/Gnn5LiQ.jpegg&quot; alt=&quot;&quot;  style=&quot;width: 100px; height: auto;&quot;&gt;
    &lt;img src=&quot;https://i.imgur.com/stUEge9.jpg&quot; alt=&quot;&quot; style=&quot;width: 100px; height: auto;&quot;&gt;
    &lt;img src=&quot;https://i.imgur.com/rhn41AJ.jpg&quot; alt=&quot;&quot;  style=&quot;width: 100px; height: auto;&quot;&gt;
    &lt;img src=&quot;https://i.imgur.com/E8AoMAw.jpg&quot; alt=&quot;&quot;  style=&quot;width: 100px; height: auto;&quot;&gt;
&lt;/div&gt;
  
 &lt;script src=&quot;https://ajax.googleapis.com/ajax/libs/jquery/3.6.4/jquery.min.js&quot;&gt;&lt;/script&gt;

<!-- end snippet -->

huangapple
  • 本文由 发表于 2023年5月21日 11:08:58
  • 转载请务必保留本文链接:https://go.coder-hub.com/76298141.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定