這篇文章主要介紹了使用jQuery實現圖片遮罩半透明墜落遮擋,效果非常棒,小伙伴們做相冊的時候可以直接拿走使用。
默認九宮格圖片排列效果,當鼠標懸停在圖片上後,會從圖片的上方下滑一個半透明遮罩的效果
同時出現一些文字介紹
使用方法:
1、將head中的css樣式引入到你的網頁中
2、將代碼部分拷貝到你的網頁body結束前的地方即可
(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);
})
})
以上就是本文分享的全部內容了,希望大家能夠喜歡。