感谢您的支持,我会继续努力的!
打开微信扫一扫,即可进行扫码打赏哦
点我查看本站打赏源码!
Powered by RUNCODEX.COM,学的不仅是技术,更是梦想!!!
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>菜鸟教程(runcodex.com)</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
</head>
<body>
<p><b>注意:</b>该实例无法在 Internet Explorer 9 及更早 IE 版本上工作。</p>
<img src='http://h.hiphotos.baidu.com/image/pic/item/8d5494eef01f3a2922e765c99b25bc315c607c8d.jpg'/>
</body>
</html>
xxxxxxxxxx
$(function(){
$('img').click(function(){
if($(this).hasClass("big"))
$(this).removeClass('big');
else
$(this).addClass('big');
});
})
img
{
width:100px;
height:100px;
background:red;
cursor:pointer;
transition:width 0.5s , height 0.5s ;
/* Safari */
-webkit-transition:width 0.5s , height 0.5s ;
}
.big
width:400px;
height:400px;