如何用jQuery实现弹出一个层然后过3秒钟后自动变淡然后消失

2024-12-17 12:19:41
推荐回答(1个)
回答1:





recursion

body {
overflow: hidden;
}



$ (function ()
    {
    $ (':button').click (function ()
    {
    $ ('div').show ().delay (3000).fadeOut ();
    });
    });




style="display: none; width: 1265px; height: 784px; position: absolute; top: 0px; left: 0px; background-color: rgb(45, 45, 45); z-index: 5000; opacity: 0.2; background-position: initial initial; background-repeat: initial initial;">


相关问答