| 【打印本页】 | 【收藏】 | 【关闭】 | 【字号 大 中 小】 |
说明: | 一个特殊效果的按钮 |
效果: | |
代码: | <style type="text/css"> <!-- .over {color:yellow; background: navy} .down {color:yellow; background: navy; font-style: italic} --> </style> <input type="Button" value="按钮也疯狂" name="Button" onMouseOver="this.className='over';" onMouseOut="this.className='';this.value='按钮也疯狂'" onMouseDown="this.className='down';" onMouseUp="this.className='over';" onClick="this.value='这按钮真的好疯狂!'"> |