Jump to content
  • 0

пропорции изображения в chrome (остальные правильно отображают)


kompolom
 Share

Question

Имеется галерея изображений "ссылка", из нескольких наборов. разрешение может быть разным. по клику на картинке в центре, она должна занимать всю ширину wrapper и растягиваться соответственно вниз до оригинального размера. В мозилле и опере так и происходит, а вот хром почему то меняет соотношение сторон картинки.

screen.png

#wrapper {
width: 1000px;
min-height: 100%;
height: auto !important;
margin: 2% auto 0;
background:#FFFFF5 ;
padding: 2%;
}
#gallery #photo {
display:block;
margin:10px auto;
max-width: 60%;

}
.realsize{

top: 0;
left: 0;
z-index: 1;
max-height: 100% !important;
max-width: 100% !important;
width:100%;
height: 100%;

изменение размера происходит путем добавления к изображению класса realsize

$("#photo").click(function(){

$(this).toggleClass("realsize");
});

структура страницы:

<div id="wrapper" class="rounded light">

<div id="gallery">
<ul id="sets"></ul>
<div id="loading"></div>
<img id="photo" src="images/loading.gif" />

<ul id="thumbs"></ul>
</div>
<div class="clear"></div>
</div>

подскажите, пожалуйста что делать.

Edited by kompolom
Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0

#wrapper {
width: 1000px;
min-height: 100%;
height: auto !important;
margin: 2% auto 0;
background:#FFFFF5 ;
padding: 2%;
}
#gallery #photo {
display:block;
margin:10px auto;
max-width: 60%;

}
.realsize{

top: 0;
left: 0;
z-index: 1;
max-width: 100% !important;
width:100%;

Так работает. И как я сразу не догадался... :huh:

Кто столкнется с такой же проблемой, просто указывайте только ширину или только высоту в относительных единицах.

Вопрос решен.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy