Html中的JavaScript我忘了怎么拼了,鼠标放到图片上去(不点击)能让图片变大,求大神指点

如题所述

<img id="img" onmouseover="bigger()" onmouseout="smaller()" src="你的图片路径" style="cursor:pointer;width:100px;height:100px;" />
<script type="text/javascript">
 var img = document.getElementById('img');
 function bigger(){
  img.style.width = '400px';
  img.style.height = '400px';
 }
 
 function smaller(){
  img.style.width = '100px';
  img.style.height = '100px';

温馨提示:答案为网友推荐,仅供参考
第1个回答  2016-12-27
用css haver就能实现
相似回答