默認(rèn)九宮格圖片排列效果,當(dāng)鼠標(biāo)懸停在圖片上后,會(huì)從圖片的上方下滑一個(gè)半透明遮罩的效果
同時(shí)出現(xiàn)一些文字介紹
使用方法:
1、將head中的css樣式引入到你的網(wǎng)頁(yè)中
2、將代碼部分拷貝到你的網(wǎng)頁(yè)body結(jié)束前的地方即可
(js、圖片采用絕對(duì)路徑,不建議修改)
復(fù)制代碼代碼如下:
$(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);
})
})
以上就是本文分享的全部?jī)?nèi)容了,希望大家能夠喜歡。