Jump to content
  • 0

Загрузка изображении с помощью javascript


macbeth9
 Share

Question

Нужно сделать так:есть страница а на ней изображение а над этим изображением есть превьюшки и при нажатии на одну из них..загружается картинка с превьюшки на вот это главное изображение..сделал картинку чтобы понятней было

d890c532a539t.jpg

Edited by macbeth9
Link to comment
Share on other sites

9 answers to this question

Recommended Posts

  • 0

Делается очень просто: Подготавливаешь блок, в котором и будут появляться главные картинки, при нажатии на таб всем картинкам в этом блоке ставишь дисплей: ноун, вторым шагом врубаешь нужную.

Link to comment
Share on other sites

  • 0

я вот все подготовил <div class="thumbnail_carta" style="width:102px; height:102px;">

<a href="../carta"><img src="../img/mapa/argentina.jpg" width="100px" height="100px" style="border:1px solid #b2cbd0" title="Политическая карта Аргентины" alt="Политическая карта Аргентины"></a>

</div>

подскажите конкретнее

Link to comment
Share on other sites

  • 0

Что-то типо того

<div id="wrap">
<img />
<img />
<img />
<img />
</div>

	

var wrap = document.getElementById('wrap');
var img = wrap.getElementsByTagName('img');
var li = document.getElementById('ul').getElementsByTagName('li');
for(var i=0;i<li.length;i++){
li[i].onclick = function(){
for(var j=0;j<img.length;j++){
img[j].style.display = 'none';
}
img[i].style.display = 'block';
}
}

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