gpt4 book ai didi

javascript - 使用 JavaScript 启动 CSS-Transition

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

我阅读了 5 篇关于如何使用 JavaScript 启动 CSS-Transition 的教程,但它不起作用。我正在使用 Safari。这是我的代码:

<html>
<head>
<title>Test</title>
<style type="text/css">
#test{
width: 100px;
height: 100px;
background-color: aqua;
transition: width 3s linear;
}
</style>
<script type="text/javascript">
function test(){
document.getElementById('test').style.width = 200+'px';
}
</script>
</head>
<body>
<div id="test">
</div>

<button onclick="test()">Los</button>
</body>
</html>

最佳答案

您可能需要使用 vendor 前缀,safari 使用 webkit,因此请尝试添加 -webkit- 前缀。

<style type="text/css">
#test{
width: 100px;
height: 100px;
background-color: aqua;
-webkit-transition: width 3s linear;
-moz-transition: width 3s linear;
transition: width 3s linear;
}
</style>

DEMO

关于javascript - 使用 JavaScript 启动 CSS-Transition,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14385212/

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