如何使用jquery单击切换框阴影

时间:2017-06-03 11:07:58

标签: javascript jquery html css

我正在尝试更改div上点击的框阴影,这是我的代码

的index.html

<html>
    <head>

        <script src="jquery-3.2.1.min.js"></script>
        <link rel="stylesheet" href="style.css">
    </head>
    <body>
        <div id="ttt"></div>
        <script src="script.js"></script>
    </body>
</html>

的script.js

$(document).ready(function () {
    var state = false;
    $("#ttt").click(function () {
        if (state) {
            $("#ttt").animate({
                'boxShadowX': '10px',
                'boxShadowY': '10px',
                'boxShadowBlur': '20px'
            });
        } else {
            $("#ttt").animate({
                'boxShadowX': '3px',
                'boxShadowY': '3px',
                'boxShadowBlur': '3px'
            });
        }
        console.log(state);
        state = !state;
    });

});

的style.css

#ttt{
    padding-left: 100px;
    padding-top: 100px;
    padding-right: 100px;
    padding-bottom: 100px;
    width: 100px;
    height: 100px;
    background-color: red;
    border-radius: 10px;
    box-shadow: 10px 10px 5px #888888;
}

当我点击鼠标时,如何使用jquery更改切换框显示动画从完全可见到瘦?

1 个答案:

答案 0 :(得分:0)

使用Edwin Martin的jQuery插件进行阴影动画扩展.animate方法,你可以简单地使用普通语法和#34; boxShadow&#34;以及 - &#34;颜色,x和y偏移,模糊半径和展开半径&#34;的每个方面。 - 获得动画:

$(selector).animate({ boxShadow : "0 0 5px 3px rgba(100,100,200,0.4)" }); 

编辑:现在包含多个影子支持。