码迷,mamicode.com
首页 > Web开发 > 详细

jquery实现图片放大效果

时间:2017-10-18 19:50:42      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:jquery实现图片放大效果

好久没更新了,先来一发关于jquery图片放大缩小的代码

直接上代码

前端页面:

<tr>
    <td height="30" align="right" bgcolor="#f2f2f2" class="left_txt2">产品相册</td>
    <td bgcolor="#f2f2f2">&nbsp;</td>
    <td width="32%" height="30" bgcolor="#f2f2f2" class="goodsimgupload">
        <span id="uploadPercent"></span>
        <input type="hidden" value="<?php echo $result[‘goodsimg‘];?>" name="goodsimg" />
        <img src=\‘#\‘" /td>
</tr>
$(function (){
    var isbig = -1;//定义全局变量 判断放大缩小 自己发挥的写吧
    $(".img").click(function(){
        if(isbig == -1) {
            $("#img_id").animate({height: "300px", width: "300px"});
            isbig = 1;
        }else{
            $("#img_id").animate({height: "50px", width: "100px"});
            isbig = -1;
        }

    });
});


本文出自 “kangjunfei” 博客,转载请与作者联系!

jquery实现图片放大效果

标签:jquery实现图片放大效果

原文地址:http://kangjunfei.blog.51cto.com/11556647/1973835

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!