溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶(hù)服務(wù)條款》

jquery輕量級(jí)鼠標(biāo)懸停半透明遮罩效果,一看就懂哦

發(fā)布時(shí)間:2020-07-25 04:07:34 來(lái)源:網(wǎng)絡(luò) 閱讀:633 作者:q911911 欄目:web開(kāi)發(fā)

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>jQuery打造鼠標(biāo)懸停圖片時(shí)的半透明遮罩效果</title>
<style>
*{margin:0;padding:0;}
li{list-style:none;}
.box{width:800px;height:400px;margin:50px auto;overflow:hidden;}
.box ul li{width:200px;height:200px;float:left;position:relative;overflow:hidden;}
.box ul li .dask{width:170px;height:180px;padding:20px 0 0 30px;background:#000;opacity:0.8;position:absolute;top:-200px;left:0;}
.box ul li .dask p{color:#fff;}
.box ul li .dask a{color:green;text-decoration:none}
</style>
<script type="text/javascript" src="/ajaxjs/jquery-1.9.1.min.js"></script>
<script>
$(function () {
    $(".box ul li").hover(
        function () {
            $(this).find(".dask").stop().delay(50).animate({"top":0,opacity:0.8},300)
         },
        function () {
            $(this).find(".dask").stop().animate({"top":-200,opacity:0},300)
        }

    )
})
</script>
</head>
<body>
<div class="box">
<ul>
    <li>
        <a href="www.nftx8.com"><img src="/jscss/demoimg/wall_s1.jpg" width="200" height="200" alt="" /></a>
        <div class="dask">
            <p>荃銀高科</p>
            <p>天穿</p>
            <a href="/">您想不到的美景</a>
        </div>
    </li>
    <li>
        <a href="www.nftx8.com"><img src="/jscss/demoimg/wall_s2.jpg" width="200" height="200" alt="" /></a>
        <div class="dask">
            <p>落日</p>
            <p>天錯(cuò)時(shí)</p>
            <a href="/">自然美</a>
        </div>
    </li>
</ul>
</div>
</body>
</html>


將img里面src換成你本地的圖片名字就可以了



來(lái)源www.nftx8.com 

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀(guān)點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI