我正在爲我的網站創建一個照片庫。我想要在加載頁面時顯示照片的網格。然後,當用戶懸停在每張照片上時,照片會放大一點。創建自定義jQuery類
我創建了懸停的JavaScript,但我不知道如何正確地將其打包到類中。
基本上,我只想創建這樣
<ul>
<li><img src="img1.jpg" /></li>
<li><img src="img2.jpg" /></li>
</ul>
列表,然後它會自動在我的地方徘徊機制已經創建的每個圖像。 到目前爲止,這是我的代碼。
<!DOCTYPE HTML>
<html>
<head>
<script src="jquery.js"></script>
<style text="text/css">
.hoverImage {
position: absolute;
width: 200px;
left: 500px;
top: 200px;
}
</style>
</head>
<body>
<script>
var originalWidth;
var originalHeight;
function onHover() {
originalWidth = $(this).width();
originalHeight = $(this).height();
$(this).stop(false, true).animate({
left: $(this).offset().left-(Math.floor(originalWidth/4)),
top: $(this).offset().top-(Math.floor(originalHeight/4)),
width: 300,
},200);
}
function offHover() {
$(this).stop(false, true).animate({
left: $(this).offset().left+(Math.floor(originalWidth/4)),
top: $(this).offset().top+(Math.floor(originalHeight/4)),
width: 200,
},200);
}
$(document).ready(function() {
$("img").hover(onHover, offHover);
});
</script>
<img class="hoverImage" src="Test.jpg"/>
</body>
</html>
按類你是指一個jQuery插件嗎?你能更清楚一點嗎? –
我不知道如何溝通我想要的東西。這是我能想到的最好的詞:/我正在尋找類似於如何完成Lightbox的事情http://lokeshdhakar.com/projects/lightbox2/#how –
我想你想擴展jquery,以便可以獲得這種類型的語法,$('ul')。relyntsHoverPlugin();對? –