做一个按钮,移上去的时候变大,放下来又变小,怎么做?
做一个按钮,移上去的时候变大,放下来又变小,怎么做?
主要是css改变大小
onmouseout,onmouseover 移进和移出触发事件 调用样式表
<style type="text/css">
.move{
width:100px;
height:50px;
}
</style>
<input type="button" name="bt" value="选择" onmouseover="this.className='move'" onmouseout="this.className=''"/>