Jump to content

Помогите соединить скрипты


Qwerty26
 Share

Recommended Posts

Всем доброго времени суток.

У меня такая просьба. Мне нужен скрипт меняющий картинку по времени без обновления страницы

Вот скрипт для смены картинок по времени(Заданы минуты)


theTime = new Date();
theMin = theTime.getMinutes();

if(theMin == "0"){document.write('<div class="slider"><img src="images/image1.jpg"></div>');}

if(theMin == "30"){document.write('<div class="slider"><img src="images/image2.jpg"></div>');}

Пожалуйста помогите соединить с ним скрипт который будет менять картинки без обновления страницы

Вот этот скрипт (по моему функция которая меняет картинки без обновления страницы внизу скрипта)


var sImg = new Array();
sImg[0]="<div style='width:95%;height:200px;background:url(/_example/rotator/psBg.gif);'></div>";
sImg[1]="<div style='width:95%;height:200px;background:url(/_example/rotator/psBg-b.gif);'></div>";
sImg[2]="<div style='width:95%;height:200px;background:url(/_example/rotator/psBg-e.gif);'></div>";
sImg[3]="<div style='width:95%;height:200px;background:url(/_example/rotator/psBg-g.gif);'></div>";
sImg[4]="<div style='width:95%;height:200px;background:url(/_example/rotator/psBg-gb.gif);'></div>";
sImg[5]="<div style='width:95%;height:200px;background:url(/_example/rotator/psBg-r.gif);'></div>";
sImg[6]="<div style='width:95%;height:200px;background:url(/_example/rotator/psBg-s.gif);'></div>";
sImg[7]="<div style='width:95%;height:200px;background:url(/_example/rotator/psBg-g.gif);'></div>";
showImg = function(){
var el=document.getElementById("showImg");
el.innerHTML=sImg[Math.floor(Math.random()*sImg.length)];
}
window.onload=showImg;

Link to comment
Share on other sites

  • 1 month later...

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

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

Попробуйте вот так:


var time = 5; // Количество секунд до смены картинки.
var sImg = new Array();
sImg[0]="<div style='width:95%;height:200px;background:url(/_example/rotator/psBg.gif);'></div>";
sImg[1]="<div style='width:95%;height:200px;background:url(/_example/rotator/psBg-b.gif);'></div>";
sImg[2]="<div style='width:95%;height:200px;background:url(/_example/rotator/psBg-e.gif);'></div>";
sImg[3]="<div style='width:95%;height:200px;background:url(/_example/rotator/psBg-g.gif);'></div>";
sImg[4]="<div style='width:95%;height:200px;background:url(/_example/rotator/psBg-gb.gif);'></div>";
sImg[5]="<div style='width:95%;height:200px;background:url(/_example/rotator/psBg-r.gif);'></div>";
sImg[6]="<div style='width:95%;height:200px;background:url(/_example/rotator/psBg-s.gif);'></div>";
sImg[7]="<div style='width:95%;height:200px;background:url(/_example/rotator/psBg-g.gif);'></div>";

function showImg() {
var el=document.getElementById("showImg");
el.innerHTML=sImg[Math.floor(Math.random()*sImg.length)];
setTimeout(function() {showImg()}, time*1000);
}

window.onload = function() { showImg() };

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
Reply to this topic...

×   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