gpt4 book ai didi

javascript - 过渡时间不一样

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

我想制作一些 3D slider ,但样式的转换不是同时开始的:

我希望它看起来像是在向中心旋转。

如您所见,它先调整大小,然后移动和变形。

function sasa() {

var s = document.getElementById('s1');
s.classList.add('slidef');

}
.slider {
width: 100%;
height: 400px;
margin: 0 auto;
position: relative;
}
.slide1 {
width: 40px;
height: 40px;
border: 2px solid red;
margin-left: 100px;
margin-bottom: 0;
margin-top: 5px;
-webkit-transform: perspective(50px) rotateY(-30deg);
position: absolute;
top: 180px;
right: 50px;
}
.slidef {
transition: width 1s linear 0s, height 1s linear 0s, -webkit-transform 1s linear 0s, right 1.5s linear 0s;
width: 400px;
height: 400px;
right: 300px;
-webkit-transform: perspective(0px) rotateY(0deg);
}
<button onClick="sasa()">ssssss</button>
<div class="slider">
<div class="slide1" id="s1">sasa</div>

最佳答案

像这样?

<html>
<head>
<style>
.slider {
width: 100%;
height: 400px;
margin: 0 auto;
position: relative;
}
.slide1 {
width: 40px;
height: 40px;
border: 2px solid red;
margin-left: 100px;
margin-bottom: 0;
margin-top: 5px;
-webkit-transform: perspective(50px) rotateY(-30deg);
position: absolute;
top: 180px;
right: 50px;
}
.slidef {
transition: 1s linear 0s;
width: 400px;
height: 400px;
right: 300px;
-webkit-transform: perspective(0px) rotateY(0deg);
}
</style>
<script>
function sasa() {

var s = document.getElementById('s1');
s.classList.add('slidef');

}
</script>
</head>
<body>
<button onClick="sasa()">ssssss</button>
<div class="slider">
<div class="slide1" id="s1">sasa</div>
</div>
</body>
</html>

编辑

OP,我看到你评论说转换似乎仍然没有同时发生。我更改了脚本 block 以监视过渡期间不断变化的样式。

<script>
function monitor(e, done) {
var style = window.getComputedStyle(e);
console.log(
style.width,
style.height,
style.right,
style.transform);
if (! done.value) {
new Promise(r => setTimeout(r, 0))
.then(() => monitor(e, done));
}
}

function sasa() {

var done = { value: false };
var s = document.getElementById('s1');
s.addEventListener("transitionend", e => done.value = true, false);
monitor(s, done);
s.classList.add('slidef');

}
</script>

控制台中的结果向我表明所有样式转换都是一起开始和结束的。所以我不确定你看到了什么。但我也不确定我是否完全理解你的目的。您可以返回为每种样式设置单独的过渡时间并对其进行调整,直到获得您想要的效果。为此,请像下面这样定义 slidef 并更改每种样式的开始和延迟编号。我所展示的首先进行变换,然后进行缩放和平移。

.slidef {
transition:
width 1s linear 1s,
height 1s linear 1s,
right 1s linear 1s,
transform 1s linear 0s;
width: 400px;
height: 400px;
right: 300px;
-webkit-transform: perspective(0px) rotateY(0deg);
}

关于javascript - 过渡时间不一样,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41982983/

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