-1
A
回答
0
若要當鼠標停留在圖像顯示,但然後隱藏在不鼠標滑過:
<html>
<head>
<script type="text/javascript">
function showIt(imgsrc)
{
document.getElementById('imageshow').src=imgsrc;
document.getElementById('imageshow').style.display='block';
}
function hideIt()
{
document.getElementById('imageshow').style.display='none';
}
</script>
</head>
<body>
<img src="image1.jpg" onmouseover="showIt(this.src)" onmouseout="hideIt()"><br>
<img src="image2.jpg" onmouseover="showIt(this.src)" onmouseout="hideIt()">
<br>
<br>
<br>
<img src="" id="imageshow" style="display:none">
</body>
</html>
有它顯示的默認圖像,即使你沒有鼠標懸停在某圖像,但隨後顯示的圖像,如果你將鼠標懸停在它:
<html>
<head>
<script type="text/javascript">
function showIt(imgsrc)
{
document.getElementById('imageshow').src=imgsrc;
}
function hideIt()
{
document.getElementById('imageshow').src="default.jpg";
}
</script>
</head>
<body>
<img src="image1.jpg" onmouseover="showIt(this.src)" onmouseout="hideIt()"><br>
<img src="image2.jpg" onmouseover="showIt(this.src)" onmouseout="hideIt()">
<br>
<br>
<br>
<img src="default.jpg" id="imageshow">
</body>
</html>
有它顯示一個圖像,當鼠標懸停你,然後繼續顯示甚至WH最後的圖像帶你鼠標移開它:
<html>
<head>
<script type="text/javascript">
function showIt(imgsrc)
{
document.getElementById('imageshow').src=imgsrc;
}
</script>
</head>
<body>
<img src="image1.jpg" onmouseover="showIt(this.src)"><br>
<img src="image2.jpg" onmouseover="showIt(this.src)">
<br>
<br>
<br>
<img src="default.jpg" id="imageshow">
</body>
</html>
希望這有助於..
相關問題
- 1. 鼠標懸停圖像並顯示另一個,使用jQuery
- 2. 顯示鼠標懸停的圖像
- 3. 將鼠標懸停在另一圖像上時顯示圖像
- 4. 如何在鼠標懸停在圖像中時顯示圖像?
- 5. 鼠標懸停的圖像模糊圖像和顯示文字
- 6. 使用jquery懸停顯示圖像
- 7. jquery - 使用懸停顯示圖像
- 8. 懸停圖像? (鼠標)
- 9. JQuery更改鼠標懸停的圖像
- 10. JQuery鼠標懸停圖像覆蓋
- 11. 鼠標懸停在圖像上時可點擊圖標顯示
- 12. 圖像懸停 - 鼠標顯示爲文本圖標?
- 13. 需要在懸停時顯示圖像 - 使用raphaeljs的圖像地圖
- 14. jQuery來改變圖像和字幕顯示鼠標懸停
- 15. 使用鼠標懸停在其他div中顯示圖像
- 16. 鼠標懸停顯示像jQuery工具提示一個div
- 17. 當鼠標懸停在圖像上時標籤隱藏/顯示?
- 18. 我需要顯示在圖像的頂部一個div:懸停
- 19. 使用jquery更改鼠標懸停上顯示的圖像的位置
- 20. 顯示隱藏圖像使用jquery鼠標懸停的DIV問題
- 21. 將鼠標懸停在圖像變化的另一個圖像
- 22. 將鼠標懸停另一圖像隱藏動畫圖像
- 23. jquery顯示行上懸停的圖像
- 24. 使用css懸停顯示圖像
- 25. 懸停顯示/隱藏圖像標題
- 26. 鼠標懸停時的jQuery圖像滑塊和鼠標懸停時的重置
- 27. 放大鼠標懸停圖像,而不使用Jquery推動其他圖像?
- 28. 圖像懸停時,如何在懸停時顯示圖像?
- 29. Javascript。將鼠標懸停在右側顯示圖像的圖像上。
- 30. 將鼠標懸停在圖像上並在該圖像上顯示鏈接
我想顯示圖像的基團,與相鄰的實際圖像的彈出和隱藏彈出時,鼠標移出。我不想使用任何Div。 – Sheeraz