|
<!-- 网页特效代码由[中国WEB开发者网络:http://www.ChinaWebDev.com]提供! --> <!-- 要实现此效果需要 2 个步骤: -->
<!-- 第 1 步: --> <!-- 把下面的代码加到<HEAD></HEAD>区域中: -->
<style type="text/css">
<!--
.over {color:yellow; background: navy}
.down {color:yellow; background: navy; font-style: italic}
-->
</style>
<!-- 第 2 步: --> <!-- 把下面的代码加到<BODY></BODY>区域中: -->
<input
type="Button"
onMouseOver="this.className='over';"
onMouseOut="this.className='';"
onMouseDown="this.className='down';"
onMouseUp="this.className='over';"
value="按钮也疯狂"
onClick="this.value='我真的好喜欢你!'" name="Button">
|