javascript - Colorbox and Image Resize - Stack Overflow

I have a gallery where I want the User to Open a Picture with Colorbox. (Then send the Picture with a M

I have a gallery where I want the User to Open a Picture with Colorbox. (Then send the Picture with a Mail or Print it etc.)

This Site must be programmed dynamically because it has to work on an IPad too.

Now to the actual Problem:

This div should be shown in the Colorbox:

<div style = "display:none"> 
 <div id="inline" style="height:100%; width:auto"> 
    <img src="#" id="inline_img" style="max-height:90%; max-width:100%"/> 
    <div id="buttons">
        <button > test </button>
        <button > test1 </button>
        <button > test2 </button>
    </div>
 </div>
</div>

And this is the Javascripit function where the div opens up in the colorbox.

$(function(){
  //$('.element a').colorbox({});
  $('.element a').click(function(){
      // Using a selector:
    $('#inline_img').attr('src',$(this).find("img").attr('src'));
    $.fn.colorbox({
        inline:true,
        href:"#inline",
        maxHeight:'90%',
        maxWidth:'90%'
        }); 
    return false;
  });
  $('.element a').colorbox({    
        onComplete : function() { 
        $(this).colorbox.resize(); 
        }    
    });

But the Colorbox always is much bigger than the Picture itself. The Colorbox must be as big as the Image and in the center of the screen.

I have a gallery where I want the User to Open a Picture with Colorbox. (Then send the Picture with a Mail or Print it etc.)

This Site must be programmed dynamically because it has to work on an IPad too.

Now to the actual Problem:

This div should be shown in the Colorbox:

<div style = "display:none"> 
 <div id="inline" style="height:100%; width:auto"> 
    <img src="#" id="inline_img" style="max-height:90%; max-width:100%"/> 
    <div id="buttons">
        <button > test </button>
        <button > test1 </button>
        <button > test2 </button>
    </div>
 </div>
</div>

And this is the Javascripit function where the div opens up in the colorbox.

$(function(){
  //$('.element a').colorbox({});
  $('.element a').click(function(){
      // Using a selector:
    $('#inline_img').attr('src',$(this).find("img").attr('src'));
    $.fn.colorbox({
        inline:true,
        href:"#inline",
        maxHeight:'90%',
        maxWidth:'90%'
        }); 
    return false;
  });
  $('.element a').colorbox({    
        onComplete : function() { 
        $(this).colorbox.resize(); 
        }    
    });

But the Colorbox always is much bigger than the Picture itself. The Colorbox must be as big as the Image and in the center of the screen.

Share Improve this question edited Jul 11, 2012 at 8:47 MrTouch asked Jul 10, 2012 at 13:40 MrTouchMrTouch 6542 gold badges12 silver badges29 bronze badges 0
Add a ment  | 

2 Answers 2

Reset to default 10

I'm use the following code and resolve problem.

$('.colorBox').colorbox({
     scalePhotos: true,
     maxWidth: '100%'
});

That result makes sense to me. You gave colorbox a display:block element with no defined width and asked it to estimate the size, which of course will be 100% of the available width.

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743663250a4486547.html

相关推荐

  • javascript - Colorbox and Image Resize - Stack Overflow

    I have a gallery where I want the User to Open a Picture with Colorbox. (Then send the Picture with a M

    1天前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信