gpt4 book ai didi

javascript - 如何将速度参数分配给回调函数

转载 作者:太空宇宙 更新时间:2023-11-04 13:37:59 24 4
gpt4 key购买 nike

我一直在尝试弄清楚如何将速度分配给回调函数,但没成功。

在这个程序中。

HTML:

<button type="button" id="trigger">Try</button>
<div id="box"></div>
<div id="bottom"></div>

CSS:

body
{
position: absolute;
background-color: white;
height: 1000%;
}
#box
{
position: absolute;
height: 300px;
width: 400px;
top: 100px;
left: 0px;
margin: 0px;
padding: 0px;
border-color: black;
background-color: black;
opacity: 0;
}
#bottom
{
position: absolute;
bottom: 0px;
height: 100px;
width: 100%;
background-color: black;
}

JS:

$(document).ready(function () {
$("#trigger").click(function () {
var ele = document.getElementById('bottom');
var pos = ele.getBoundingClientRect();
var x = pos.left;
var y = pos.top;
$("#box").animate({
left: "100px",
opacity: "1"
}, "slow", function () {
window.scrollTo(x, y);
}, "slow");
});
});

从回调中删除速度后,它可以工作但没有成功。如何为其分配速度,提前致谢。

fiddle :http://jsfiddle.net/9C8kr/

最佳答案

你加了两次速度,最后一次无效。
如果你想为滚动设置动画,那就这样做

$(document).ready(function () {
$("#trigger").click(function () {
var ele = document.getElementById('bottom');
var pos = ele.getBoundingClientRect();
var x = pos.left;
var y = pos.top;
$("#box").animate({
left: "100px",
opacity: "1"
}, "slow", function () {
$('html, body').animate({
scrollLeft : x,
scrollTop : y
}, 'slow');
});
});
});

FIDDLE

关于javascript - 如何将速度参数分配给回调函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22893745/

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