а можно пример если не сложно рабочий
|
а можно по подробнее как это реализовать если не сложно помоги
|
Николай_777,
накидайте массив ссылок на картинки!!! пяток хотябы |
Николай_777,
["...","..."...] |
а можешь написать как это будет выглядеть ото я полный ноль в js и куда вставлять это все
<script> jQuery(document).ready(function () { // фигарим сюда брендирование напрямую! if (typeof (not_blocked) == 'undefined' || !not_blocked) { var content_w = 1000; var side_width = (window.innerWidth - content_w) / 2; /* Брендирование */ jQuery('body').css({ 'background': "url('http://www.top-4f.ru/img/8975.jpg') no-repeat scroll center top -80px #000", 'padding-top': "20px" }); // добавим ссылки jQuery('body').prepend( '<a id="ar_t12" style="cursor: pointer; z-index: 1; position: absolute; top: 0px; left: 0px; width: 100%; height: 286px;" href="http://www.top-4f.ru/stuff/" target="_blank"><img src="http://www.top-4f.ru/stuff/" width="1" height="1" /></a>' ); jQuery('body').prepend( '<a id="ar_r12" style="cursor: pointer; z-index: 1; position: absolute; top: 0px; right: 0px; left: auto; width: ' + side_width + 'px; height: 850px;" href="http://www.top-4f.ru/stuff/" target="_blank"></a>' ); jQuery('body').prepend( '<a id="ar_l12" style="cursor: pointer; z-index: 1; position: absolute; top: 0px; left: 0px; width: ' + side_width + 'px; height: 850px;" href="http://www.top-4f.ru/stuff/" target="_blank"></a>' ); // вешаем бинд на изменение размеров окна jQuery(window).resize(function () { var side_width = (window.innerWidth - content_w) / 2; side_width = side_width > 0 ? side_width : 0; jQuery('#ar_r12, #ar_l12').css('width', side_width); }); } }); </script> то есть помочь до работать код |
Николай_777,
вы что такое массив в курсе? :cray: вас просили написать только то что в 1 строке. var url = ['http://www.top-4f.ru/img/8975.jpg','http://www.top-4f.ru/_ld/0/s58345627.jpg'], num = url.length * Math.random()|0; url = url[num]; jQuery('body').css({ 'background': "url('"+url+"') no-repeat scroll center top #000", 'padding-top': "150px" }); |
а как добавить разные ссылки для картинок чтобы когда картинки обновляются у них были разные ссылки то есть когда картинка танки то ссылка на танки если черепашки то ссылка черепашки и еще картинка черепашки цвета вот такого rgb(242, 238, 226)
как сделать чтобы цвет фона был таким же то есть когда появлялась картинка черепашки то фон сайта был таким padding-top: 150px; background: url("http://www.top-4f.ru/_ld/0/s58345627.jpg") 50% 0% no-repeat scroll rgb(242, 238, 226); а когда танки то таким padding-top: 150px; background: url("http://www.top-4f.ru/img/8975.jpg") 50% 0% no-repeat scroll rgb(0, 0, 0); |
Николай_777,
далее сами ... var url = ['http://www.top-4f.ru/img/8975.jpg','http://www.top-4f.ru/_ld/0/s58345627.jpg'], rgb = ['rgb(0, 0, 0)','rgb(242, 238, 226)'], num = url.length * Math.random()|0; url = url[num]; rgb = rgb[num]; jQuery('body').css({ 'background': "url('"+url+"') no-repeat scroll center top " + rgb, 'padding-top': "150px" }); |
помоги еще ссылками пожалуйста давай я тебе на телефон рублей 300 закину за помощь
|
Николай_777,
<!DOCTYPE html> <html> <head> <title>Untitled</title> <meta charset="utf-8"> <style type="text/css"> </style> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script> <script type="text/javascript"> jQuery(document).ready(function () { if (typeof (not_blocked) == 'undefined' || !not_blocked) { var content_w = 1000; var side_width = (window.innerWidth - content_w) / 2; //width = width > 0 ? width : 0; /* Брендирование */ var url = ['http://www.top-4f.ru/img/8975.jpg','http://www.top-4f.ru/_ld/0/s58345627.jpg'], rgb = ['rgb(0, 0, 0)','rgb(242, 238, 226)'], tt = ['http://','http://'], src = ['http://javascript.ru/forum/images/smilies/unsure.gif','http://javascript.ru/forum/images/smilies/dance3.gif'], ttext = ["aaaa","cccc"], rr = ['http://','http://'], rtext = ["2222","kkkk"], ll = ['http://','http://']; ltext = ["tttt","uuuuu"], num = url.length * Math.random()|0; url = url[num]; rgb = rgb[num]; tt = tt[num]; src = src[num]; ttext = ttext[num]; rr = rr[num]; rtext = rtext[num]; ll = ll[num]; ltext = ltext[num]; jQuery('body').css({ 'background': "url('"+url+"') no-repeat scroll center top " + rgb, 'padding-top': "150px" }); // добавим ссылки jQuery('body').prepend( '<a id="ar_t12" style="cursor: pointer; z-index: 1; position: absolute; top: 0px; left: 0px; width: 100%; height: 150px;" href="'+tt+'" target="_blank"><img src="'+src+'" width="70" height="70" />'+ttext+'</a>' ); jQuery('body').prepend( '<a id="ar_r12" style="cursor: pointer; z-index: 1; position: absolute; top: 0px; right: 0px; left: auto; width: ' + side_width + 'px; height: 850px;" href="'+rr+'" target="_blank">'+rtext+'</a>' ); jQuery('body').prepend( '<a id="ar_l12" style="cursor: pointer; z-index: 1; position: absolute; top: 100px; left: 0px; width: ' + side_width + 'px; height: 850px;" href="'+ll+'" target="_blank">'+ltext+'</a>' ); jQuery(window).resize(function () { var side_width = (window.innerWidth - content_w) / 2; side_width = side_width > 0 ? side_width : 0; jQuery('#ar_r12, #ar_l12').css('width', side_width); }); } }); </script> </head> <body> </body> </html> |
Часовой пояс GMT +3, время: 05:22. |