gpt4 book ai didi

javascript - Jquery Animate Image 在点击事件右侧然后在第二次点击事件回到左侧

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

我正在尝试制作一组​​图像的动画,以便在第一次点击时单独向右移动 300 像素,再次点击时向左移动 300 像素回到起始位置。

我现在所拥有的不起作用。所以要么是 A) 我的语法有问题,要么是 B) 我的图像实际上没有以 5 像素渲染。

编辑:这个 fiddle 现在更新了正确的代码

Jsfiddle Demo

<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
<style type="text/css">
#wrapper {
width: 80em;
}

.image {
width: 10em;
height: 10em;
display: block;
position: relative;
left:5px;
}
</style>

<script type="text/javascript">
$(document).ready(function() {
$(".image").click(function() {
if ($('this').css('left') =='5px') {
$(".image").animate({"right": "300px"},3000);
else
$(".image").animate({"left": "300px"},3000);
}
});
});
</script>
</head>
<body>
<div id="wrapper">
<section id="gallery">
<img id="avery" class="image" src='images/OAI.jpg' alt= "On Avery Island Album Art">
<img id="overthesea" class="image" src='images/ITAOTS.jpg' alt="In the Aeroplane Over the Sea album art">
<img id="beauty" class="image" src='images/beauty.jpg' alt="Beauty Demo Album Art">
<img id="everthingIs" class="image" src='images/everythingis.jpg' alt="Eveything Is EP Album Art">
</section>
</div>
</body>
</html>

最佳答案

试试这个:

$(document).ready(function () {
$(".image").click(function () {
var th = $(this);
if ($(th).css('left') == '5px') {
console.log("ret");
$(th).animate({
"left": "300px"
}, 3000);
} else {
console.log("sdffsdsff");
$(th).animate({
"left": "5px"
}, 3000);
}
});
});

Fiddle here.

关于javascript - Jquery Animate Image 在点击事件右侧然后在第二次点击事件回到左侧,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19763771/

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