Jump to content
  • 0

Эффект перекатывания картинки


_Ирина_
 Share

Question

Помогите пожалуйста правильно изменить код CSS.

Имеется вот такой код

<style type="text/css">
.hoverbox
{
cursor: default;
list-style: none;
}

.hoverbox a
{
cursor: default;
}

.hoverbox a .preview
{
display: none;
}

.hoverbox a:hover .preview
{
display: block;
position: absolute;
top: -33px;
left: -45px;
z-index: 1;
}

.hoverbox img
{
background: #fff;
color: inherit;
vertical-align: top;
width: 100px;
height: 75px;
margin: 2px;
padding: 2px;
border-color: #ccc;
border-style: solid;
border-width: 2px;
}

.hoverbox li
{

color: inherit;
display: inline;
float: left;
position: relative;
}

.hoverbox .preview
{
border-color: #000;
width: 200px;
height: 150px;
}
</style>

*************
<ul class="hoverbox">
<li>
<a href="#"><img src="img/photo01.jpg" alt="description" /><img src="img/photo01.jpg" alt="description" class="preview" /></a>
</li>
<li>
<a href="#"><img src="img/photo02.jpg" alt="description" /><img src="img/photo02.jpg" alt="description" class="preview" /></a>
</li>
<li>
<a href="#"><img src="img/photo03.jpg" alt="description" /><img src="img/photo03.jpg" alt="description" class="preview" /></a>
</li>
<li>
<a href="#"><img src="img/photo04.jpg" alt="description" /><img src="img/photo04.jpg" alt="description" class="preview" /></a>
</li>
<li>
<a href="#"><img src="img/photo05.jpg" alt="description" /><img src="img/photo05.jpg" alt="description" class="preview" /></a>
</li>
<li>
<a href="#"><img src="img/photo06.jpg" alt="description" /><img src="img/photo06.jpg" alt="description" class="preview" /></a>
</li>
<li>
<a href="#"><img src="img/photo07.jpg" alt="description" /><img src="img/photo07.jpg" alt="description" class="preview" /></a>
</li>
<li>
<a href="#"><img src="img/photo08.jpg" alt="description" /><img src="img/photo08.jpg" alt="description" class="preview" /></a>
</li>
<li>
<a href="#"><img src="img/photo09.jpg" alt="description" /><img src="img/photo09.jpg" alt="description" class="preview" /></a>
</li>
<li>
<a href="#"><img src="img/photo10.jpg" alt="description" /><img src="img/photo10.jpg" alt="description" class="preview" /></a>
</li>

</ul>
*************************************

вс? работает. Единственное неудобство, что увеличивающаяся картинка перекрывается рядом стоящей маленькой. Какие параметры и как изменить, чтобы большая картинка была НАД всеми рядом расположенными? Спасибо большое за помощь!

Link to comment
Share on other sites

8 answers to this question

Recommended Posts

  • 0
А на Хабре разве не было акцентировано на этом внимания? Читай статью внимательнее :)

Если ещ? и объясните, что это такое и где находится, может быть и прочитаю внимательно. Спасибо за отклик

Link to comment
Share on other sites

  • 0
Если ещ? и объясните, что это такое и где находится, может быть и прочитаю внимательно. Спасибо за отклик

Вы разве не по этой статье делаете: http://habrahabr.ru/blog/css/37100.html

Если даже нет, думаю Вам все равно будет интересно почитать.

Link to comment
Share on other sites

  • 0
.hoverbox li:hover {z-index:1;}

ps: not valid for IE6 without hack :)

признательна, за такое уточнение...а решением проблемы не поделитесь?

В ИЕ :hover работает только для ссылок. Решение одно ? использовать ссылку не по назначению.

Link to comment
Share on other sites

  • 0
Если ещ? и объясните, что это такое и где находится, может быть и прочитаю внимательно. Спасибо за отклик

Вы разве не по этой статье делаете: http://habrahabr.ru/blog/css/37100.html

Если даже нет, думаю Вам все равно будет интересно почитать.

нет..не по этой. и код этот я стырнетила...сама ещ? не умею создавать что либо подобное...в любом случае спасибо за ссылочку пригодится

Link to comment
Share on other sites

  • 0

Спасибо всем.... а вот и решение

старый вариант

.hoverbox li
{

color: inherit;
display: inline;
float: left;
position: relative;
}

меняем на новый

.hoverbox li
{
background: #eee;
border-color: #ddd #bbb #aaa #ccc;
border-style: solid;
border-width: 1px;
color: inherit;
display: inline;
float: left;
margin: 3px;
padding: 5px;
position: relative;
}

а для ИЕ добавляем отдельным CSS файлом

/* =Internet Explorer Fixes
———————————————————————-*/

.hoverbox a
{
position: relative;
}

.hoverbox a:hover
{
display: block;
font-size: 100%;
z-index: 1;
}

.hoverbox a:hover .preview
{
top: -38px;
left: -50px;
}

.hoverbox li
{
position: static;
}

и вс? очень красиво работает

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