Jump to content
  • 0

Ротатор изображения в шапке


bagfinder
 Share

Question

В стиле есть строка, отвечающая за изображение, находящееся в шапке сайта:

.headimage { background:url(images/headimage.png); height:150px; background-repeat:no-repeat; background-position:center; }

На просторах интернета нашел ротатор изображений на php:

$format=array("jpg","JPG","jpeg","JPEG","GIF","gif","PNG","png");
$img_rand=array();
$c1=sizeof($format);
for($i=0; $i<$c1; $i++){
$add_img=glob("./images/*.".$format[$i]."");
$img_rand=array_merge((array)$add_img,(array)$img_rand);
}
$c2=sizeof($img_rand);
$rand=rand(0,($c2-1));
echo "<img src='".$img_rand[$rand]."'>";

Как прикрутить этот ротатор к сайту?

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

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

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

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