預設九宮格圖片排列效果,當滑鼠停留在圖片上後,會從圖片的上方下滑一個半透明遮罩的效果
同時出現一些文字介紹
使用方法:
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);
})
})
以上就是本文分享的全部了,希望大家能夠喜歡。