码迷,mamicode.com
首页 > 其他好文 > 详细

jbox 图片的放大与缩小

时间:2015-09-21 12:06:45      阅读:119      评论:0      收藏:0      [点我收藏+]

标签:

技术分享

html代码

 <div class="table-box">
        <table style="border:none;">
            <thead>
            <th class="name">图片</th>
            <th class="name"></th>
            <th class="name"></th>
            <th class="name"></th>
            <th class="name"></th>
            <th class="name"></th>
            </thead>
            <tbody>
            <tr>
                <?php $i = 0;foreach ($pictures as $pic): ?>
                <?php if ($i==6): ?>
            </tr>
            <tr>
                <?php $i = 0; endif; ?>
               <td>
                   <img src="<?php echo $pic[‘picturepath‘];?>" alt="<?php echo $pic[‘picturetype‘]; ?>" style="height:80px;width:80px;cursor:pointer" onclick="javascript:CallJbox(‘<?php echo $pic[‘picturepath‘];?>‘,‘<?php echo $pic[‘picturetype‘]?>‘,500,450)"/>
                </td>
                <?php $i++;endforeach; ?>
            </tr>
            </tbody>
        </table>
    </div>
//弹窗显示界面
    function CallJbox(url,title) {
        html = "<img style=‘width:500px;height:450px‘ src=‘" + url + "‘/>";
        $.jBox(html, {
            title:title,
            width: 500,
            height: 450,
            iframeScrolling: ‘yes‘,
            buttons: {}
        });
    }

 

jbox 图片的放大与缩小

标签:

原文地址:http://www.cnblogs.com/lqw4/p/4825665.html

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