gpt4 book ai didi

javascript - 带有 jQ​​uery 函数的 CSS 动画有延迟时间

转载 作者:行者123 更新时间:2023-11-28 04:50:48 27 4
gpt4 key购买 nike

我对点击 CSS 变换动画的持续时间和响应有疑问。问题是,在第一次点击切换时,动画会响应点击,并且可以中途停止,允许它来回切换。但是,在第一轮 jQuery 功能完成后的第二次点击退出时,动画必须达到其完整持续时间才能再次激活。我怎样才能使动画在第一次和第二次执行该功能时响应点击(能够中途取消)?感谢您的帮助,谢谢。

<body>

<div class="wrapper">
<div class="circle1"><li class="products"><a href="#">Products</a></li></div>
</div>

<div class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<a><img id="ring" src="New Assets/ring5.png" alt=""></a>
</ul>
</div>

</body>
.circle1 {
width: 80px;
height: 80px;
position: relative;
top: 400px;
-webkit-transition: all 1.5s ease-in-out;
transition: all 1.5s ease-in-out;
transform: translateY(2000px);
}
#ring {
background-size: contain;
width: 50px;
position: relative;
top: 5px;
}
$(document).ready(function() {
var $circle1 = $('.circle1');
$('#ring').on("click", function() {
if ($circle1.css('transform') == 'matrix(1, 0, 0, 1, 0, 2000)') {
$circle1.css('transform', 'matrix(1, 0, 0, 1, 0, 400)');
} else {
$circle1.css('transform','matrix(1, 0, 0, 1, 0, 2000)');
};
});
});

最佳答案

您的代码有效...您可以发送所有文件吗?

用它创建新文件并尝试(这是你的代码):

<style>
.circle1 {
width: 80px;
height: 80px;
position: relative;
top: 0px;
-webkit-transition: all 1.5s ease-in-out;
transition: all 1.5s ease-in-out;
transform: translateY(250px);
}

#ring {
background-size: contain;
width: 50px;
position: relative;
top: 5px;
}
</style>


<a>
<img id="ring" src="http://i.dailymail.co.uk/i/pix/2015/06/29/12/038FBB710000044D-3143037-image-a-30_1435578285388.jpg" alt="">
</a>
<div class="circle1">
<ul>
<liclass="products">
<ahref="#">Products</a>
</li>
</ul>
</div>


<script src="https://code.jquery.com/jquery-1.11.3.js"></script>
<script>
$(document).ready(function() {
var $circle1 = $('.circle1');
$('#ring').on("click", function() {

if ($circle1.css('transform') == 'matrix(1, 0, 0, 1, 0, 250)') {
$circle1.css('transform', 'matrix(1, 0, 0, 1, 0, 0)');
}
else {
$circle1.css('transform','matrix(1, 0, 0, 1, 0, 250)');
};
});
});
</script>

编辑(试试这个):

$(document).ready(function()
{
var $circle1 = $('.circle1');
$('#ring').click(click);

function click()
{
// Get this
var t = $(this);
// Disable click event
$(this).off('click');
// After 1500ms set reset click
setTimeout(function(){ t.click(click); }, 1500);

if($circle1.css('transform') == 'matrix(1, 0, 0, 1, 0, 250)')
{
$circle1.css('transform', 'matrix(1, 0, 0, 1, 0, 0)');
}
else
{
$circle1.css('transform','matrix(1, 0, 0, 1, 0, 250)');
}
}
});

关于javascript - 带有 jQ​​uery 函数的 CSS 动画有延迟时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40718349/

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