Jump to content
  • 0

Циклическая смена фона у div


TillL
 Share

Question

Здравствуйте. Подскажите пожалуйста, как кожно реализовать циклическую смену фона у div'а. Например: есть несколько небольших изображений и их нужно менять при каждом обновлении страницы.

Сейчас имею:

html:


<div class="head"></div>

css:


.head {
height: 200px;
background: #e2e1e7 url("../images/head.jpg") no-repeat;
background-position: right;
border-radius: 10px 10px 0px 0px;
}

Edited by TillL
Link to comment
Share on other sites

9 answers to this question

Recommended Posts

  • 0

Sensei, спасибо большое за помощь. Но я не силен в JavaScript, уточните, пожалуйста, как адаптировать последнюю строчку в Вашем коде к моему div'у.


$(document).ready(function() {

var randomBg = 'url(img/bg' + Math.ceil(Math.random() * 5) + '.png)';
$('body').css('background', randomBg)

});

Edited by TillL
Link to comment
Share on other sites

  • 0

Если ваша картинка называется head.jpg следущии картинки называйте head1.jpg, head2.jpg и т.д.

$(document).ready(function() {

var randomBg = 'url(img/head' + Math.ceil(Math.random() * 5) + '.jpg)';

$('.head').css('background', randomBg)

});

Edited by pashkje
Link to comment
Share on other sites

  • 0

var randomBg = 'url(img/head' + Math.ceil(Math.random() * 5) + '.jpg)';

Красным выделен путь до картинки, путь относительно документа с вашим блоком head, а не скрипта.

Названия картинок конкретно для этой строки: head1.jpg, head2.jpg и так далее.

Кстати код написан при помощи jquery, надеюсь вы ее подключили.

Link to comment
Share on other sites

  • 0

Всё, разобрался, спасибо. Возникла одна проблема: фон повторяется, свойство no-repeat в css не работает.

Дописал в var randomBg = 'url(img/' + Math.ceil(Math.random() * 2) + '.jpg) no-repeat - фон не повторяется, но как его спозиционировать вправо?

Edited by TillL
Link to comment
Share on other sites

  • 0

Sensei, огромное вам спасибо!!

Сделал так:


$(document).ready(function() {

var randomBg = 'url(img/' + Math.ceil(Math.random() * 2) + '.jpg) #e2e1e7 right no-repeat';
$('.head').css('background', randomBg)

});

Хотел Вам плюсануть за помощь, но выпало сообщение: "Вы исчерпали лимит положительных оценок", а жаль :(

Всего Вам доброго и спасибо еще раз за помощь.

Edited by TillL
Link to comment
Share on other sites

  • 0

подскажите пожайлуста как  код который находится в теме сделать кликабильным то есть код меняет фон а как этот фон сделать кликабильным я имею в виду картинка 1 ссылка 1 обновляем станицу допустим картинка 3 ссылка 3 и так далее

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