美文网首页
flask-admin里 js实现图片点击放大缩小的功能

flask-admin里 js实现图片点击放大缩小的功能

作者: W有来有去 | 来源:发表于2017-09-21 13:58 被阅读36次

jquery的toggleClass()帮你轻松实现

<style>
.max{width:100%;height:auto;}
.min{width:100px;height:auto;}
<style>

<html>
<body>



</body>
</html>

<script src="/statics/js/jquery-3.1.1.min.js" type="text/javascript"></script>
<script>
$('#img').click(function(){
$(this).toggleClass('min');
$(this).toggleClass('max');
});
</script>

相关文章

网友评论

      本文标题:flask-admin里 js实现图片点击放大缩小的功能

      本文链接:https://www.haomeiwen.com/subject/dzbzsxtx.html