gpt4 book ai didi

javascript - Jquery:点击显示图像

转载 作者:太空宇宙 更新时间:2023-11-04 11:21:38 25 4
gpt4 key购买 nike

预览:https://www.youtube.com/embed/8qKRf0cg3Co

如视频所示,我必须单击 img 才能看到其下的 img 的大 View 。

到目前为止,这是我的代码:

HTML:

<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>JQUERY</title>
<script src="jquery/jquery-2.1.1.min.js"></script></head>

<body>
<center>

<div id="wrapper">

<div id="nav">
<div id="overbalk"></div>
<img src="images/foto_01.png" align="top" class="foto" />
<img src="images/foto_02.png" align="top" class="foto" />
<img src="images/foto_03.png" align="top" class="foto" />
<img src="images/foto_04.png" align="top" class="foto" />
</div>

<div id="content">
<img src="images/foto_01.png" align="top" class="slide_foto" />
</div>

</div>

</center>
</body>
</html>

CSS:

<style>
body {
padding: 0;
margin: 0;
background-color: black;
}
#nav {
width: 600px;
margin: 0px auto;
}
#overbalk {
width: 600px;
height: 30px;
position: absolute;
background-color: black;
}
.foto {
width: 75px;
height: 75px;
margin-top: -20px;
border: 1px solid black;
}
.foto:hover {
cursor: pointer;
}
#content {
position: absolute;
top: 50px;
z-index: -2;
width: 100%;
}
.slide_foto {
margin-left:-3200px;
}
</style>

JS:

$(document).ready(function (){
$('.foto').mouseenter(function () {
$(this).animate({marginTop: '+=50'}, 200);
});
$('.foto').mouseleave(function (){
$(this).animate({marginTop: '-=50'}, 200);
});
$('.foto').click(function () {
$(this).next('#content').show();
});
});

我也试过这个:

$('.foto').on('click', function () {
$('#content').html(nieuwe_foto).show();
var nieuwe_foto = $(this).attr('src');
$('.slide_foto').attr('src', nieuwe_foto);
}

这些都不起作用,并且有点卡住了,图像没有显示在小图像下方。

最佳答案

您需要进行 2 处更改:

  1. <style> 中删除此样式类

    .slide_foto {
    margin-left:-3200px;
    }
  2. 在您的 onclick 处理程序中进行此更改

    $('.foto').on('click', function () {
    var nieuwe_foto = $(this).prop('src');
    $('.slide_foto').prop('src', nieuwe_foto);
    });

我用示例图像做了一个工作 fiddle https://jsfiddle.net/sachin_puthran/c2qgjpj1/

nieuwe_foto 之后,以下内容不执行任何操作在下一行和 div#content 之前是未定义的已经可见 .show()也不做任何事情。

$('#content').html(nieuwe_foto).show();

关于javascript - Jquery:点击显示图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32722370/

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