Javascript 在悬停主图像上,宽度不适用于缩放图像,请参考下面我的附加图像

Javascript 在悬停主图像上,宽度不适用于缩放图像,请参考下面我的附加图像,javascript,html,css,Javascript,Html,Css,在悬停主图像上,缩放图像应显示其属性,如指定的宽度和高度。代码正在工作,但在悬停主图像上缩放图像时出现问题 /*这是我的脚本。我在这里的代码中使用了这个,marksize表示html主图像中的id=“mark”,zoomImg表示主图像悬停时的宽度和高度*/ $(函数(){ $(“#show”).simpleZoom({ zoomBox:“缩放”, 标记大小:\[120169\], 缩放:\[800400\], zoomImg:\[480677\] }); }); (函数($){ $.fn.s

在悬停主图像上,缩放图像应显示其属性,如指定的宽度和高度。代码正在工作,但在悬停主图像上缩放图像时出现问题

/*这是我的脚本。我在这里的代码中使用了这个,marksize表示html主图像中的id=“mark”,zoomImg表示主图像悬停时的宽度和高度*/
$(函数(){
$(“#show”).simpleZoom({
zoomBox:“缩放”,
标记大小:\[120169\],
缩放:\[800400\],
zoomImg:\[480677\]
});
});
(函数($){
$.fn.simpleZoom=函数(选项){
变量定义={
标记大小:\[200100\],
缩放:\[400400\],
zoomImg:\[800800\]
};
var opt=$.fn.extend({},defs,options);
返回此值。每个(函数(){
var markBox=$(这是);
var zoomBox=$(opt.zoomBox);
var zoom_img=$(opt.zoomBox).find(“img”);
var markBoxSize=\[markBox.width(),markBox.height(),markBox.offset().left,markBox.offset().top\];
var markSize=opt.markSize;
var zoomSize=opt.zoomSize;
var zoomImg=opt.zoomImg;
var mark_ele=“”;
var mark#u css={位置:“绝对”,顶部:0,左侧:0,宽度:markSize\[0\]+“px”,高度:markSize\[1\]+“px”,背景色:“000”,不透明度:.5,过滤器:“alpha(不透明度=50)”,显示:“无”,光标:“十字线”};
var show_w=markBoxSize\[0\]-markSize\[0\];
var show_h=markBoxSize\[1\]-markSize\[1\];
//创建标记元素并添加级联样式表
css({宽度:zoomSize\[0\]+“px”,高度:zoomSize\[1\]+“px”});
markBox.append(mark_ele);
$(“#马克”).css(马克#css);
markBox.mouseover(函数(){
$(“#标记”).show();
zoomBox.show();
}).mouseout(函数(){
$(“#标记”).hide();
zoomBox.hide();
}).mousemove(函数(e){
变量l=e.pageX-markBoxSize\[2\]-(markSize\[0\]/2);
变量t=e.pageY-markBoxSize\[3\]-(markSize\[1\]/2);
if(l<0){
l=0;
}否则如果(l>显示w){
l=显示w;
}
if(t<0){
t=0;
}否则如果(t>显示){
t=显示h;
}
$(“#标记”).css({左:l+“px”,上:t+“px});
变量z_x=-(l/show_w)*(zoomImg\[0\]-zoomize\[0\]);
变量z_y=-(t/show_h)*(zoomImg\[1\]-zoomize\[1\]);
css({左:z_x+“px”,上:z_y+“px”});
});
});
}
})(jQuery)
#显示{
宽度:100%;
高度:400px;
溢出:隐藏;
位置:相对位置;
左:0;
}
#显示标记{
位置:绝对位置;
排名:0;
左:0;
宽度:200px;
高度:100px;
背景色:#000;
不透明度:.5;
过滤器:α(不透明度=50);
光标:十字线;
边框:1px实心#999;
显示:无;
}
#变焦{
位置:绝对位置;
左:250px;
排名:0;
z指数:99;
/*宽度:400px*/
高度:400px;
显示:无;
溢出:隐藏;
边框:1px实心#eee;
}
#变焦图像{
位置:绝对位置;
左:0;
排名:0;
}
#展示图片{
显示:块!重要;
宽度:60%!重要;
高度:400px!重要;
利润率:021%;
}

“id=”show\u pic“/>
"/> 
HTML代码

 <div class="bzoom_wrap">
        <ul id="bzoom">
            <li>
                <img class="bzoom_thumb_image" src="saree.jpeg" />
                <img class="bzoom_big_image" src="saree.jpeg"/>
            </li>
            <li>
                <img class="bzoom_thumb_image" src="saree1.jpeg"/>
                <img class="bzoom_big_image" src="saree1.jpeg"/>
            </li>
            <li>
                <img class="bzoom_thumb_image" src="saree2.jpeg"/>
                <img class="bzoom_big_image" src="saree2.jpeg"/>
            </li>
        </ul>
    </div>

我使用过的脚本

 <script type="text/javascript">
        $("#bzoom").zoom({
            zoom_area_width: 400,
            autoplay_interval: 3000,
            small_thumbs: 3,
            autoplay: false
        });
    </script>

    <script>

        (function ($) {
            $.fn.zoom = function (options) {

                var _option = {
                    align: "left",
                    thumb_image_width: 380,
                    thumb_image_height: 400,
                    source_image_width: 450,
                    source_image_height: 450,
                    zoom_area_width: 400,
                    zoom_area_height: "justify",
                    zoom_area_distance: 10,
                    zoom_easing: true,
                    click_to_zoom: false,
                    zoom_element: "auto",
                    show_descriptions: true,
                    description_location: "bottom",
                    description_opacity: 0.7,
                    small_thumbs: 3,
                    smallthumb_inactive_opacity: 1,
                    smallthumb_hide_single: true,
                    smallthumb_select_on_hover: false,
                    smallthumbs_position: "bottom",
                    show_icon: true,
                    hide_cursor: false,
                    //          speed: 600,                 
                    autoplay: true,
                    //          autoplay_interval: 6000,    
                    keyboard: true,
                    right_to_left: false,
                }

                if (options) {
                    $.extend(_option, options);
                }

                var $ul = $(this);
                if ($ul.is("ul") && $ul.children("li").length && $ul.find(".bzoom_big_image").length) {

                    $ul.addClass('bzoom clearfix').show();
                    var $li = $ul.children("li").addClass("bzoom_thumb"),
                            li_len = $li.length,
                            autoplay = _option.autoplay;
                    $li.first().addClass("bzoom_thumb_active").show();
                    if (li_len < 2) {
                        autoplay = false;
                    }

                    $ul.find(".bzoom_thumb_image").css({width: _option.thumb_image_width, height: _option.thumb_image_height}).show();

                    var scalex = _option.thumb_image_width / _option.source_image_width,
                            scaley = _option.thumb_image_height / _option.source_image_height,
                            scxy = _option.thumb_image_width / _option.thumb_image_height;

                    var $bzoom_magnifier, $bzoom_magnifier_img, $bzoom_zoom_area, $bzoom_zoom_img;


                    if (!$(".bzoom_magnifier").length) {
                        $bzoom_magnifier = $('<li class="bzoom_magnifier"><div class=""><img src="" /></div></li>');
                        $bzoom_magnifier_img = $bzoom_magnifier.find('img');

                        $ul.append($bzoom_magnifier);

                        $bzoom_magnifier.css({top: top, left: left});
                        $bzoom_magnifier_img.attr('src', $ul.find('.bzoom_thumb_active .bzoom_thumb_image').attr('src')).css({width: _option.thumb_image_width, height: _option.thumb_image_height});
                        $bzoom_magnifier.find('div').css({width: _option.thumb_image_width * scalex, height: _option.thumb_image_height * scaley});
                    }


                    if (!$('.bzoom_zoom_area').length) {
                        $bzoom_zoom_area = $('<li class="bzoom_zoom_area"><div><img class="bzoom_zoom_img" /></div></li>');
                        $bzoom_zoom_img = $bzoom_zoom_area.find('.bzoom_zoom_img');
                        var top = 0,
                                left = 0;

                        $ul.append($bzoom_zoom_area);

                        if (_option.align == "left") {
                            top = 0;
                            left = 0 + _option.thumb_image_width + _option.zoom_area_distance;
                        }

                        $bzoom_zoom_area.css({top: top, left: left});
                        $bzoom_zoom_img.css({width: _option.source_image_width, height: _option.source_image_height});
                    }

                    var autoPlay = {
                        autotime: null,
                        isplay: autoplay,
                        start: function () {
                            if (this.isplay && !this.autotime) {
                                this.autotime = setInterval(function () {
                                    var index = $ul.find('.bzoom_thumb_active').index();
                                    changeLi((index + 1) % _option.small_thumbs);
                                }, _option.autoplay_interval);
                            }
                        },
                        stop: function () {
                            clearInterval(this.autotime);
                            this.autotime = null;
                        },
                        restart: function () {
                            this.stop();
                            this.start();
                        }
                    }


                    var $small = '';
                    if (!$(".bzoom_small_thumbs").length) {
                        var top = _option.thumb_image_height + 10,
                                width = _option.thumb_image_width,
                                smwidth = (_option.thumb_image_width / _option.small_thumbs) - 10,
                                smheight = smwidth / scxy,
                                ulwidth =
                                smurl = '',
                                html = '';

                        for (var i = 0; i < _option.small_thumbs; i++) {
                            smurl = $li.eq(i).find('.bzoom_thumb_image').attr("src");

                            if (i == 0) {
                                html += '<li class="bzoom_smallthumb_active"><img src="' + smurl + '" alt="small" style="width:' + smwidth + 'px; height:' + smheight + 'px;" /></li>';
                            } else {
                                html += '<li style="opacity:1;"><img src="' + smurl + '" alt="small" style="width:' + smwidth + 'px; height:' + smheight + 'px;" /></li>';
                            }
                        }

                        $small = $('<li class="bzoom_small_thumbs" style="top:' + top + 'px; width:' + width + 'px;"><ul class="clearfix" style="width: 485px;">' + html + '</ul></li>');
                        $ul.append($small);

                        $small.delegate("li", "click", function (event) {
                            changeLi($(this).index());
                            autoPlay.restart();
                        });

                        autoPlay.start();
                    }

                    function changeLi(index) {
                        $ul.find('.bzoom_thumb_active').removeClass('bzoom_thumb_active').stop().animate({opacity: 0}, _option.speed, function () {
                            $(this).hide();
                        });
                        $small.find('.bzoom_smallthumb_active').removeClass('bzoom_smallthumb_active').stop().animate({opacity: _option.smallthumb_inactive_opacity}, _option.speed);

                        $li.eq(index).addClass('bzoom_thumb_active').show().stop().css({opacity: 0}).animate({opacity: 1}, _option.speed);
                        $small.find('li:eq(' + index + ')').addClass('bzoom_smallthumb_active').show().stop().css({opacity: _option.smallthumb_inactive_opacity}).animate({opacity: 1}, _option.speed);

                        $bzoom_magnifier_img.attr("src", $li.eq(index).find('.bzoom_thumb_image').attr("src"));
                    }




                    _option.zoom_area_height = _option.zoom_area_width / scxy;
                    $bzoom_zoom_area.find('div').css({width: _option.zoom_area_width, height: _option.zoom_area_height});

                    $li.add($bzoom_magnifier).mousemove(function (event) {
                        var xpos = event.pageX - $ul.offset().left,
                                ypos = event.pageY - $ul.offset().top,
                                magwidth = _option.thumb_image_width * scalex,
                                magheight = _option.thumb_image_height * scalex,
                                magx = 0,
                                magy = 0,
                                bigposx = 0,
                                bigposy = 0;

                        if (xpos < _option.thumb_image_width / 2) {
                            magx = xpos > magwidth / 2 ? xpos - magwidth / 2 : 0;
                        } else {
                            magx = xpos + magwidth / 2 > _option.thumb_image_width ? _option.thumb_image_width - magwidth : xpos - magwidth / 2;
                        }
                        if (ypos < _option.thumb_image_height / 2) {
                            magy = ypos > magheight / 2 ? ypos - magheight / 2 : 0;
                        } else {
                            magy = ypos + magheight / 2 > _option.thumb_image_height ? _option.thumb_image_height - magheight : ypos - magheight / 2;
                        }

                        bigposx = magx / scalex;
                        bigposy = magy / scaley;

                        $bzoom_magnifier.css({'left': magx, 'top': magy});
                        $bzoom_magnifier_img.css({'left': -magx, 'top': -magy});

                        $bzoom_zoom_img.css({'left': -bigposx, 'top': -bigposy});
                    }).mouseenter(function (event) {
                        autoPlay.stop();

                        $bzoom_zoom_img.attr("src", $(this).find('.bzoom_big_image').attr('src'));
                        $bzoom_zoom_area.css({"background-image": "none"}).stop().fadeIn(400);

                        $ul.find('.bzoom_thumb_active').stop().animate({'opacity': 0.5}, _option.speed * 0.7);
                        $bzoom_magnifier.stop().animate({'opacity': 1}, _option.speed * 0.7).show();
                    }).mouseleave(function (event) {
                        $bzoom_zoom_area.stop().fadeOut(400);
                        $ul.find('.bzoom_thumb_active').stop().animate({'opacity': 1}, _option.speed * 0.7);
                        $bzoom_magnifier.stop().animate({'opacity': 0}, _option.speed * 0.7, function () {
                            $(this).hide();
                        });

                        autoPlay.start();
                    })
                }
            }
        })(jQuery);
    </script>

$(“\bzoom”).zoom({
缩放区域宽度:400,
自动播放间隔:3000,
小拇指:3,
自动播放:错误
});
(函数($){
$.fn.zoom=函数(选项){
var_选项={
对齐:“左”,
拇指图像宽度:380,
拇指图像高度:400,
源图像宽度:450,
源图像高度:450,
缩放区域宽度:400,
缩放面积高度:“对齐”,
缩放区域距离:10,
真的,
单击以缩放:false,
缩放元素:“自动”,
显示描述:正确,
描述_位置:“底部”,
说明\u不透明度:0.7,
小拇指:3,
smallthumb\u非活动\u不透明度:1,
smallthumb_hide_single:没错,
smallthumb\u选择\u上的\u悬停:false,
小拇指位置:“底部”,
显示图标:true,
隐藏光标:false,
//速度:600,,
自动播放:对,
//自动播放间隔:6000,
键盘:没错,
从右到左:false,
}
如果(选项){
$.extend(_选项,选项);
}
var$ul=$(本);
如果($ul.is(“ul”)&&ul.children(“li”).length&&ul.find($bzoom\u big\u image”).length){
$ul.addClass('bzoom clearfix').show();
var$li=$ul.children(“li”).addClass(“bzoom_thumb”),
 <script type="text/javascript">
        $("#bzoom").zoom({
            zoom_area_width: 400,
            autoplay_interval: 3000,
            small_thumbs: 3,
            autoplay: false
        });
    </script>

    <script>

        (function ($) {
            $.fn.zoom = function (options) {

                var _option = {
                    align: "left",
                    thumb_image_width: 380,
                    thumb_image_height: 400,
                    source_image_width: 450,
                    source_image_height: 450,
                    zoom_area_width: 400,
                    zoom_area_height: "justify",
                    zoom_area_distance: 10,
                    zoom_easing: true,
                    click_to_zoom: false,
                    zoom_element: "auto",
                    show_descriptions: true,
                    description_location: "bottom",
                    description_opacity: 0.7,
                    small_thumbs: 3,
                    smallthumb_inactive_opacity: 1,
                    smallthumb_hide_single: true,
                    smallthumb_select_on_hover: false,
                    smallthumbs_position: "bottom",
                    show_icon: true,
                    hide_cursor: false,
                    //          speed: 600,                 
                    autoplay: true,
                    //          autoplay_interval: 6000,    
                    keyboard: true,
                    right_to_left: false,
                }

                if (options) {
                    $.extend(_option, options);
                }

                var $ul = $(this);
                if ($ul.is("ul") && $ul.children("li").length && $ul.find(".bzoom_big_image").length) {

                    $ul.addClass('bzoom clearfix').show();
                    var $li = $ul.children("li").addClass("bzoom_thumb"),
                            li_len = $li.length,
                            autoplay = _option.autoplay;
                    $li.first().addClass("bzoom_thumb_active").show();
                    if (li_len < 2) {
                        autoplay = false;
                    }

                    $ul.find(".bzoom_thumb_image").css({width: _option.thumb_image_width, height: _option.thumb_image_height}).show();

                    var scalex = _option.thumb_image_width / _option.source_image_width,
                            scaley = _option.thumb_image_height / _option.source_image_height,
                            scxy = _option.thumb_image_width / _option.thumb_image_height;

                    var $bzoom_magnifier, $bzoom_magnifier_img, $bzoom_zoom_area, $bzoom_zoom_img;


                    if (!$(".bzoom_magnifier").length) {
                        $bzoom_magnifier = $('<li class="bzoom_magnifier"><div class=""><img src="" /></div></li>');
                        $bzoom_magnifier_img = $bzoom_magnifier.find('img');

                        $ul.append($bzoom_magnifier);

                        $bzoom_magnifier.css({top: top, left: left});
                        $bzoom_magnifier_img.attr('src', $ul.find('.bzoom_thumb_active .bzoom_thumb_image').attr('src')).css({width: _option.thumb_image_width, height: _option.thumb_image_height});
                        $bzoom_magnifier.find('div').css({width: _option.thumb_image_width * scalex, height: _option.thumb_image_height * scaley});
                    }


                    if (!$('.bzoom_zoom_area').length) {
                        $bzoom_zoom_area = $('<li class="bzoom_zoom_area"><div><img class="bzoom_zoom_img" /></div></li>');
                        $bzoom_zoom_img = $bzoom_zoom_area.find('.bzoom_zoom_img');
                        var top = 0,
                                left = 0;

                        $ul.append($bzoom_zoom_area);

                        if (_option.align == "left") {
                            top = 0;
                            left = 0 + _option.thumb_image_width + _option.zoom_area_distance;
                        }

                        $bzoom_zoom_area.css({top: top, left: left});
                        $bzoom_zoom_img.css({width: _option.source_image_width, height: _option.source_image_height});
                    }

                    var autoPlay = {
                        autotime: null,
                        isplay: autoplay,
                        start: function () {
                            if (this.isplay && !this.autotime) {
                                this.autotime = setInterval(function () {
                                    var index = $ul.find('.bzoom_thumb_active').index();
                                    changeLi((index + 1) % _option.small_thumbs);
                                }, _option.autoplay_interval);
                            }
                        },
                        stop: function () {
                            clearInterval(this.autotime);
                            this.autotime = null;
                        },
                        restart: function () {
                            this.stop();
                            this.start();
                        }
                    }


                    var $small = '';
                    if (!$(".bzoom_small_thumbs").length) {
                        var top = _option.thumb_image_height + 10,
                                width = _option.thumb_image_width,
                                smwidth = (_option.thumb_image_width / _option.small_thumbs) - 10,
                                smheight = smwidth / scxy,
                                ulwidth =
                                smurl = '',
                                html = '';

                        for (var i = 0; i < _option.small_thumbs; i++) {
                            smurl = $li.eq(i).find('.bzoom_thumb_image').attr("src");

                            if (i == 0) {
                                html += '<li class="bzoom_smallthumb_active"><img src="' + smurl + '" alt="small" style="width:' + smwidth + 'px; height:' + smheight + 'px;" /></li>';
                            } else {
                                html += '<li style="opacity:1;"><img src="' + smurl + '" alt="small" style="width:' + smwidth + 'px; height:' + smheight + 'px;" /></li>';
                            }
                        }

                        $small = $('<li class="bzoom_small_thumbs" style="top:' + top + 'px; width:' + width + 'px;"><ul class="clearfix" style="width: 485px;">' + html + '</ul></li>');
                        $ul.append($small);

                        $small.delegate("li", "click", function (event) {
                            changeLi($(this).index());
                            autoPlay.restart();
                        });

                        autoPlay.start();
                    }

                    function changeLi(index) {
                        $ul.find('.bzoom_thumb_active').removeClass('bzoom_thumb_active').stop().animate({opacity: 0}, _option.speed, function () {
                            $(this).hide();
                        });
                        $small.find('.bzoom_smallthumb_active').removeClass('bzoom_smallthumb_active').stop().animate({opacity: _option.smallthumb_inactive_opacity}, _option.speed);

                        $li.eq(index).addClass('bzoom_thumb_active').show().stop().css({opacity: 0}).animate({opacity: 1}, _option.speed);
                        $small.find('li:eq(' + index + ')').addClass('bzoom_smallthumb_active').show().stop().css({opacity: _option.smallthumb_inactive_opacity}).animate({opacity: 1}, _option.speed);

                        $bzoom_magnifier_img.attr("src", $li.eq(index).find('.bzoom_thumb_image').attr("src"));
                    }




                    _option.zoom_area_height = _option.zoom_area_width / scxy;
                    $bzoom_zoom_area.find('div').css({width: _option.zoom_area_width, height: _option.zoom_area_height});

                    $li.add($bzoom_magnifier).mousemove(function (event) {
                        var xpos = event.pageX - $ul.offset().left,
                                ypos = event.pageY - $ul.offset().top,
                                magwidth = _option.thumb_image_width * scalex,
                                magheight = _option.thumb_image_height * scalex,
                                magx = 0,
                                magy = 0,
                                bigposx = 0,
                                bigposy = 0;

                        if (xpos < _option.thumb_image_width / 2) {
                            magx = xpos > magwidth / 2 ? xpos - magwidth / 2 : 0;
                        } else {
                            magx = xpos + magwidth / 2 > _option.thumb_image_width ? _option.thumb_image_width - magwidth : xpos - magwidth / 2;
                        }
                        if (ypos < _option.thumb_image_height / 2) {
                            magy = ypos > magheight / 2 ? ypos - magheight / 2 : 0;
                        } else {
                            magy = ypos + magheight / 2 > _option.thumb_image_height ? _option.thumb_image_height - magheight : ypos - magheight / 2;
                        }

                        bigposx = magx / scalex;
                        bigposy = magy / scaley;

                        $bzoom_magnifier.css({'left': magx, 'top': magy});
                        $bzoom_magnifier_img.css({'left': -magx, 'top': -magy});

                        $bzoom_zoom_img.css({'left': -bigposx, 'top': -bigposy});
                    }).mouseenter(function (event) {
                        autoPlay.stop();

                        $bzoom_zoom_img.attr("src", $(this).find('.bzoom_big_image').attr('src'));
                        $bzoom_zoom_area.css({"background-image": "none"}).stop().fadeIn(400);

                        $ul.find('.bzoom_thumb_active').stop().animate({'opacity': 0.5}, _option.speed * 0.7);
                        $bzoom_magnifier.stop().animate({'opacity': 1}, _option.speed * 0.7).show();
                    }).mouseleave(function (event) {
                        $bzoom_zoom_area.stop().fadeOut(400);
                        $ul.find('.bzoom_thumb_active').stop().animate({'opacity': 1}, _option.speed * 0.7);
                        $bzoom_magnifier.stop().animate({'opacity': 0}, _option.speed * 0.7, function () {
                            $(this).hide();
                        });

                        autoPlay.start();
                    })
                }
            }
        })(jQuery);
    </script>
<style>
    .bzoom { direction: ltr; }
    .bzoom,
    .bzoom_thumb,
    .bzoom_thumb_image,
    .bzoom_big_image,
    .bzoom_zoom_preview,
    .bzoom_icon,
    .bzoom_hint { display: none }
    .bzoom,
    .bzoom ul,
    .bzoom li,
    .bzoom img,
    .bzoom_hint,
    .bzoom_icon,
    .bzoom_description {
        margin: 0;
        padding: 0;
        border: 0;
        list-style: none;
    }

    .bzoom,
    .bzoom_magnifier div,
    .bzoom_magnifier div img,
    .bzoom_small_thumbs ul,
    ul .bzoom_small_thumbs li,
    .bzoom_zoom_area div,
    .bzoom_zoom_img { position: relative; }

    .bzoom img,
    .bzoom li {
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -o-user-select: none;
        user-select: none;
        -webkit-user-drag: none;
        -moz-user-drag: none;
        user-drag: none;
    }

    .bzoom,
    .bzoom_small_thumbs li { float: left; }

    .bzoom_right { float: right;}

    .bzoom li { 
        position: absolute;
        border: 1px solid #cfcece;

    }

    .bzoom img {
        vertical-align: bottom;
        width: 50px;
        height: 70px;
        border: 1px solid #eaeaea;
    }

    .bzoom .bzoom_zoom_area,
    .bzoom_zoom_area {
        background: #fff url(./img/loading.gif) center no-repeat;
        border: 1px solid #ddd;
        padding: 6px;
        -webkit-box-shadow: 0 0 10px #ddd;
        -moz-box-shadow: 0 0 10px #ddd;
        box-shadow: 0 0 10px #ddd;
        display: none;
        z-index: 20;
    }

    .bzoom_zoom_area div { overflow: hidden; }

    .bzoom_zoom_area .bzoom_zoom_img { position: absolute; }

    .bzoom_wrap .bzoom_magnifier {
        background: #fff;
        outline: #bbb solid 1px;
        display: none;
        cursor: move;
    }

    .bzoom_magnifier div { overflow: hidden; }

    .bzoom_wrap .bzoom_small_thumbs { overflow: hidden; }

    .bzoom_wrap .bzoom_small_thumbs li {
        border: 1px solid #FFF;
        margin: 0px 10px 0px 0px;
        position: relative;
        border: 1px solid #cfcece;
    }

    .bzoom_wrap ul li.bzoom_smallthumb_active {
        -webkit-box-shadow: 0 0 10px #ddd;
        -moz-box-shadow: 0 0 10px #ddd;
        box-shadow: 0 0 10px #ddd;
        border: 1px solid #535353;
    }

</style>