項目中碰到一個小問題,在點擊一張圖片實現放大,再點擊恢復。
網上查看了以下資料,使用了下面的方法很簡單就得到了實現!
jquery的toggleClass
幫你輕松實現:
<style> .max{width:100%;height:auto;}//定義樣式,相對屏幕比例 .min{width:100px;height:auto;}//具體的像素 <style>
<html>
<body>
<img id='img' class='min' src='xxxx'>
</body>
</html>
<script> $('#img').click(function(){//傳入圖片id時注意形式,前面一個#號 $(this).toggleClass('min'); $(this).toggleClass('max'); }); </script>