亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

使用jQuery實現(xiàn)圖片遮罩半透明墜落遮擋

 更新時間:2015年03月16日 15:33:45   投稿:hebedich  
這篇文章主要介紹了使用jQuery實現(xiàn)圖片遮罩半透明墜落遮擋,效果非常棒,小伙伴們做相冊的時候可以直接拿走使用。

默認九宮格圖片排列效果,當鼠標懸停在圖片上后,會從圖片的上方下滑一個半透明遮罩的效果

同時出現(xiàn)一些文字介紹

使用方法:

1、將head中的css樣式引入到你的網(wǎng)頁中
2、將代碼部分拷貝到你的網(wǎng)頁body結(jié)束前的地方即可
(js、圖片采用絕對路徑,不建議修改)

復制代碼 代碼如下:

$(function(){
    $('.sgw_img dt').hover(function(){
        $(this).children('.box').stop(true,true).delay(100).animate({'top':0,opacity:0.8},300);
    },function(){
        $(this).children('.box').stop(true,true).animate({'top':-482,opacity:0},200);
    })
    $('.sgw_img dd').hover(function(){
        $(this).children('.box').stop(true,true).delay(100).animate({'top':0,opacity:0.8},300);
    },function(){
        $(this).children('.box').stop(true,true).animate({'top':-382,opacity:0},200);
    })
})

以上就是本文分享的全部內(nèi)容了,希望大家能夠喜歡。

相關(guān)文章

最新評論