當前位置:開發者網絡 >> 網頁特效 >> 圖形圖像 >> 內容
精彩推薦
分類最新特效
分類熱點特效
   
圖像翻轉 鼠標移上去看效果
日期:2004-07-03   人氣:   【字體: 】【收藏此文


<!-- 網頁特效代碼由[中國WEB開發者網絡:http://www.ChinaWebDev.com]提供! -->
<!-- 要實現此效果需要 2 個步驟: -->

<!-- 第 1 步: -->
<!-- 把下面的代碼加到<HEAD></HEAD>區域中: -->

<script language="Javascript">

<!--

//Slide Show script (this notice must stay intact)

//For this and more scripts

//visit java-scripts.net or http://wsabstract.com



if (document.images) {

button1 = new Image

button2 = new Image



button1.src = '../images/webasp.net.1.jpg'

button2.src = '../images/webasp.net.2.jpg'

}

//-->

</script>





<!-- 第 2 步: -->
<!-- 把下面的代碼加到<BODY></BODY>區域中: -->

<a href="#" onmouseover="document.rollover.src=button2.src"

onmouseout="document.rollover.src=button1.src"><img src="../images/webasp.net.1.jpg" border=0

name="rollover"></a>