我正在使用此jquery.smoothZoom.min.js來縮放和平移圖像。我已經成功地應用到我的項目的單個圖像,現在我想添加(<,>。即corousal),以便我可以將其用於多個圖像。當我在custom.js中添加相應的部件時,它無法正常工作。圖像隱藏和顯示不工作
我將連接兩個屏幕種類,這將清除畫面
這是第一種情況
,然後點擊右邊corousal按鈕
後
我只能看到背景但不是所需的圖像。我不明白我錯過了什麼,
這HTML部分我一直在使用
<div class="image-display" id="displayplan4" style="width:70%;height:120%; left:39%;top:10%;position:absolute;display:none;">
<img src="images/amenities.jpg" style="width:150%;height:130%; left:-60%;top:-20%;position:absolute;overflow:auto; z-index:1;">
<div style="width:150%;height:130%; left:-60%;top:-20%;position:absolute;background:rgba(255,255,255,0.7);z-index:2;">
</div>
<img class="planzoom" src="gallery/Residential/ongoing/Almog/Plan/almog1.jpg" id = "almogplan0" style="width:100%;height:100%; right:3%;top:50%;position:absolute;z-index:3;">
<!--button for forward and backward movement-->
<a href="#" > <img src="innerimages/forward.gif" id="almogforward" style="position:absolute;height:3%;width:2%;z-index:3;top:25%;right:20%;"></a>
<a href="#" ><img src="innerimages/back.gif" id="almogback" style="position:absolute;height:3%;width:2%;z-index:3;top:25%;left:0%;"></a>
</div>
和
<div id = "almogplandivII">
<img class="planzoom" src="gallery/Residential/ongoing/Almog/Plan/almog2.jpg" id= "almogplan1" style="width:100%;height:100%; right:3%;top:50%;position:absolute;z-index:3;display:none;">
</div>
和相應的JS部分在顯示和隱藏在鼠標單擊圖像圖片。
var almog_plan_div=0;
//Function for image forward with forward button
$("#almogforward").click(function()
{
if(almog_plan_div<1)
{
$("#almogplan"+almog_plan_div).hide();
almog_plan_div++;
$("#almogplan"+almog_plan_div).show();
}
else
{
$("#almogplan"+almog_plan_div).hide();
almog_plan_div=0;
$("#almogplan"+almog_plan_div).show();
}
});
//Function for image backward with backward button
$("#almogback").click(function()
{
if(almog_plan_div>0)
{
$("#almogplan"+almog_plan_div).hide();
almog_plan_div--;
$("#almogplan"+almog_plan_div).show();
}
else
{
$("#almogplan"+almog_plan_div).hide();
almog_plan_div=1;
$("#almogplan"+almog_plan_div).show();
}
});
我試圖像加display:none
樣式屬性,但它並不能幫助我的事業, 對此有何幫助?
你有現場演示嗎? – Godinall
你的意思是像jsfiddle, 我試過了,dint成功創建了 – Sham
yes或是一個實時網站預覽 – Godinall