使用jQuery为box-shadow设置动画的工作方法

时间:2012-04-29 19:52:39

标签: jquery jquery-animate css3

我在提及the previous thread of the same vein时提到这一点,the jquery box-animation plugin包含许多过时的非工作解决方案以及限制在一个方框内的{{3}}。有谁知道如何动画多个元素的盒子阴影?

1 个答案:

答案 0 :(得分:5)

您可以使用 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,而不是s (秒),您可以使用:ms (毫秒)