Показать сообщение отдельно
  #15 (permalink)  
Старый 14.05.2016, 12:18
Интересующийся
Отправить личное сообщение для Николай_777 Посмотреть профиль Найти все сообщения от Николай_777
 
Регистрация: 28.11.2015
Сообщений: 13

а можешь написать как это будет выглядеть ото я полный ноль в 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>

то есть помочь до работать код
Ответить с цитированием