Jump to content
  • 0

Как лучше реализовать..


2Ville
 Share

Question

даже не знаю, как правильно называется эта штука, но, наверное, галерея.

В общем, через гугл что-то ничего не нашел, видимо снова запрос не так формулирую. Единственное похожее было на сайте министерства обороны рф, но прикрутить не смог.

Задача такая: чтобы при наведении стрелки на один из пунктов (1-3) менялась картинка, при этом чтобы ячейка 1 (со стрелкой) становился основной, а две другие заменяли позиции друг друга.

Например, если наводится на 3 пункт, то стрелка становится где третья ячейка, вторая - первой, а третья - второй.

И так далее.

Если не совсем понятно, то тогда так:

I.

1 - img1

2 - --

3 - --

II.

1 - 2

2 - img2

3 - --

III.

1 - 2

2 - 3

3 - img3

Надеюсь, что понятно.

Вот кусок кода, если понадобится.

HTML

	<div class="gallery">
<div class="gallery-img"><img src="img/img-1.jpg"/></div>
<div class="gallery-item" id="item1"></div>
<div class="gallery-item" id="item2"></div>
<div class="gallery-item" id="item3"></div>
</div>

CSS

.gallery{
width: 980px;
height: 330px;
float:left;
}
.gallery-img {
float: left;
width:710px;
height:330px;
}
.gallery-item {
float:right;
width:270px;
height:110px;
}


#item1 {
background:url(img/gallery-item1.png);
height: 110px;
}
#item2 {
background:url(img/gallery-item2.png);
}
#item3 {
background:url(img/gallery-item3.png);
}

По сути нужен js-скрипт какой-то.

Буду благодарен за помощь.:)

1097729.jpg

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

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