gpt4 book ai didi

jquery - 使用 jQuery 动画盒阴影的工作方法

转载 作者:太空狗 更新时间:2023-10-29 12:37:27 24 4
gpt4 key购买 nike

我是引用 the previous thread of the same vein 问这个问题的,其中包含许多过时的非工作解决方案以及 the jquery box-animation plugin仅限于一个盒子。有谁知道如何为多个元素的盒子阴影设置动画?

最佳答案

你可以使用 CSS3 transition:

jsBin demo

.box {
background: #1c1c1c;
padding: 10px;
margin:20px;
width: 200px;
-webkit-transition: -webkit-box-shadow 0.5s ease-out;
-moz-transition: -moz-box-shadow 0.5s ease-out;
transition: box-shadow 0.5s ease-out;
}

.box:hover {
-webkit-box-shadow: 0px 0px 15px #444;
-moz-box-shadow: 0px 0px 15px #444;
box-shadow: 0px 0px 15px #444;
}

P.S,您可以使用 ms (millis) 而不是 s (seconds)

关于jquery - 使用 jQuery 动画盒阴影的工作方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10375422/

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