您好,欢迎来到源码搜藏!分享精神,快乐你我!提示:担心找不到本站?在百度搜索“源码搜藏”,网址永远不丢失!
  • 首 页
  • 在线工具
  • 当前位置:首页 > 网页特效 > 相册代码 >

    jQuery全屏相册代码下载

    时间:2014-09-18 08:33 来源:互联网 作者:源码搜藏 浏览:收藏 挑错 推荐 打印

    效果预览 进入下载地址列表
    jQuery全屏相册代码下载jQuery全屏相册代码下载是一款简洁实用的jQuery相册,支持左右按钮切换以及点击大图自动切换图片。jquery全屏相册代码图片切换 所属专题:相册代码

    <script type="text/javascript">
    $(window).load(function(){
        var str_h=0;
       $("#album").find("div[h]").each(function(i,ele){
          str_h+=$(ele).height();
       });
        $("#album").height(str_h);
    });
    function scaleImage(o, w, h) {
        var img = new Image();
        img.src = o.src;
        if (img.width > 0 && img.height > 0) {
            if (img.width / img.height >= w / h) {
                if (img.width > w) {
                    o.width = w;
                    o.height = (img.height * w) / img.width;
                } else {
                    o.width = img.width;
                    o.height = img.height;
                }
            } else {
                if (img.height > h) {
                    o.height = h;
                    o.width = (img.width * h) / img.height;
                } else {
                    o.width = img.width;
                    o.height = img.height;
                }
            }
        }
    }
    </script>
    jQuery全屏相册代码下载由源码搜藏网整理,转载请注明出处http://www.codesocang.com/texiao/xiangce/10253.html 源码搜藏承诺:本站所有资源无病毒,无弹窗,无干扰链接!