当前位置:开发者网络 >> 网页特效 >> 图形图象 >> 内容
精彩推荐
分类最新特效
分类热点特效
  
图象翻转 鼠标移上去看效果
日期: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>