Там картинки меняются когда входишь в разную тему или еще куда нибудь
Поиск скриптов
Сообщений 161 страница 180 из 399
Поделиться1622009-03-27 21:21:31
Марьяшка
та если я прально поняла, то вот скрипт
ставить в хтмл-низ
<SCRIPT LANGUAGE="JavaScript"> <!-- Beginning of JavaScript - var picOne=new Image() picOne.src="86-1.jpg" var picTwo=new Image() picTwo.src="86-2.jpg" var picThree=new Image() picThree.src="86-3.jpg" var message = new Array() message[0]="<img src='86-1.jpg'>" message[1]="<img src='86-2.jpg'>" message[2]="<img src='86-3.jpg'>" var i_message=0 var covertop=50 var coverleft=400 var coverwidth=1200 var coverheight=520 var texttop=covertop var textleft=coverleft var textwidth=400 var textheight=coverheight var cliptop=0 var clipright=textwidth var clipbottom=coverheight var clipleft=0 var clippoints var step=40 var pause=50 var timer function init() { if (document.all) { document.all.text.style.posTop=texttop document.all.text.style.posLeft=textleft document.all.cover.style.posTop=covertop document.all.cover.style.posLeft=coverleft clipleft=0 fadeout() } if (document.layers) { document.text.top=texttop document.text.left=textleft document.cover.top=covertop document.cover.left=coverleft clipleft=0 fadeout() } } function fadeout() { if (document.all) { if (document.all.cover.style.posLeft >=(-coverwidth+textwidth+coverleft+step)) { clipleft+=step clipright=clipleft+textwidth clippoints="rect("+cliptop+" "+clipright+" "+clipbottom+" "+clipleft+")" document.all.cover.style.clip=clippoints document.all.cover.style.posLeft-=step timer= setTimeout("fadeout()",pause) } else { clearTimeout(timer) i_message++ if (i_message>=message.length) {i_message=0} text.innerHTML=message[i_message] fadein() } } if (document.layers) { if (document.cover.left >=(-coverwidth+textwidth+coverleft+step-22)) { clipleft+=step clipright=clipleft+textwidth document.cover.clip.top=cliptop document.cover.clip.left=clipleft document.cover.clip.bottom=clipbottom document.cover.clip.right=clipright document.cover.left-=step timer= setTimeout("fadeout()",pause) } else { clearTimeout(timer) i_message++ if (i_message>=message.length) {i_message=0} document.text.document.write(message[i_message]) document.text.document.close() fadein() } } } function fadein() { if (document.layers) { if (document.cover.left<=coverleft) { clipleft-=step clipright=clipleft+textwidth document.cover.clip.top=cliptop document.cover.clip.left=clipleft document.cover.clip.bottom=clipbottom document.cover.clip.right=clipright document.cover.left+=step timer= setTimeout("fadein()",pause) } else { clearTimeout(timer) init() } } if (document.all) { if (document.all.cover.style.posLeft<=coverleft) { clipleft-=step clipright=clipleft+textwidth clippoints="rect("+cliptop+" "+clipright+" "+clipbottom+" "+clipleft+")" document.all.cover.style.clip=clippoints document.all.cover.style.posLeft+=step timer= setTimeout("fadein()",pause) } else { clearTimeout(timer) init() } } } // - End of JavaScript - --> </SCRIPT>
Поделиться1632009-03-27 21:51:10
Я даже не поняла что меняется!!!
Поделиться1642009-03-27 22:03:18
Марьяшка
в выделенные места не забываете ссылки на картинки ставить?
<SCRIPT LANGUAGE="JavaScript">
<!-- Beginning of JavaScript -
var picOne=new Image()
picOne.src="86-1.jpg"
var picTwo=new Image()
picTwo.src="86-2.jpg"
var picThree=new Image()
picThree.src="86-3.jpg"
var message = new Array()
message[0]="<img src='86-1.jpg'>"
message[1]="<img src='86-2.jpg'>"
message[2]="<img src='86-3.jpg'>"
var i_message=0
var covertop=50
var coverleft=400
var coverwidth=1200
var coverheight=520
var texttop=covertop
var textleft=coverleft
var textwidth=400
var textheight=coverheight
var cliptop=0
var clipright=textwidth
var clipbottom=coverheight
var clipleft=0
var clippoints
var step=40
var pause=50
var timer
function init() {
if (document.all) {
document.all.text.style.posTop=texttop
document.all.text.style.posLeft=textleft
document.all.cover.style.posTop=covertop
document.all.cover.style.posLeft=coverleft
clipleft=0
fadeout()
}
if (document.layers) {
document.text.top=texttop
document.text.left=textleft
document.cover.top=covertop
document.cover.left=coverleft
clipleft=0
fadeout()
}
}
function fadeout() {
if (document.all) {
if (document.all.cover.style.posLeft >=(-coverwidth+textwidth+coverleft+step)) {
clipleft+=step
clipright=clipleft+textwidth
clippoints="rect("+cliptop+" "+clipright+" "+clipbottom+" "+clipleft+")"
document.all.cover.style.clip=clippoints
document.all.cover.style.posLeft-=step
timer= setTimeout("fadeout()",pause)
}
else {
clearTimeout(timer)
i_message++
if (i_message>=message.length) {i_message=0}
text.innerHTML=message[i_message]
fadein()
}
}
if (document.layers) {
if (document.cover.left >=(-coverwidth+textwidth+coverleft+step-22)) {
clipleft+=step
clipright=clipleft+textwidth
document.cover.clip.top=cliptop
document.cover.clip.left=clipleft
document.cover.clip.bottom=clipbottom
document.cover.clip.right=clipright
document.cover.left-=step
timer= setTimeout("fadeout()",pause)
}
else {
clearTimeout(timer)
i_message++
if (i_message>=message.length) {i_message=0}
document.text.document.write(message[i_message])
document.text.document.close()
fadein()
}
}
}
function fadein() {
if (document.layers) {
if (document.cover.left<=coverleft) {
clipleft-=step
clipright=clipleft+textwidth
document.cover.clip.top=cliptop
document.cover.clip.left=clipleft
document.cover.clip.bottom=clipbottom
document.cover.clip.right=clipright
document.cover.left+=step
timer= setTimeout("fadein()",pause)
}
else {
clearTimeout(timer)
init()
}
}
if (document.all) {
if (document.all.cover.style.posLeft<=coverleft) {
clipleft-=step
clipright=clipleft+textwidth
clippoints="rect("+cliptop+" "+clipright+" "+clipbottom+" "+clipleft+")"
document.all.cover.style.clip=clippoints
document.all.cover.style.posLeft+=step
timer= setTimeout("fadein()",pause)
}
else {
clearTimeout(timer)
init()
}
}
}
// - End of JavaScript - -->
</SCRIPT>
Поделиться1652009-03-28 20:17:37
А ест скрипт который рекламу(та что сверху) сдвигает куда нибудь?
Поделиться1662009-03-28 20:41:58
<style> #pun-title table tbody tr .title-logo-tdr {position: absolute; z-index: 1; right: 0px; top: 0px}
</style>
Если память не изменяет.
right: 0px двигать горизонтальноъ
top: 0px двигать вертикально.
Отредактировано Lady Dark (2009-03-28 20:42:33)
Поделиться1672009-03-29 13:38:40
Selestina
Посиб!Это вверх да?
Поделиться1682009-03-29 13:42:44
Сакура Харуно
Да
Поделиться1692009-04-02 16:03:36
Давно просила,но так и не делаи попрошу есчё раз. вы можете дать скрипт,что бы ворум был в левой части,а картинка в правой?
Поделиться1702009-04-02 19:16:25
и можете дать скрипт,что бы было написанно куда вставлять все эти иконки?
Поделиться1712009-04-03 20:52:06
Неведимка
ничего не поняла какая картинка вправо... Про иконки вообще ничего не поняла что именно нужно
короче скрипт который сужает форум
<style>#pun {width: 95%;}</style>
95 меняй по своему усмотрению
Отредактировано Вирона (2009-04-03 20:53:32)
Поделиться1722009-04-03 21:23:52
Вирона
ммм спасибо)этот скрипт тоже пригодиться) в первом посту я писала про то что хотела бы видеть как на этом форуме
http://animetokyo.ru/ видишь,у них форум влево смещён,а картинка в право
Поделиться1732009-04-04 11:36:30
Неведимка
вот в чем у них фишка. надеюсь, они не обидятся)) у них форум прозрачный, а фон специально так сделан, что картинка на правой стороне. это впринципе сделать легко, только с картинкой повозиться.
фон:
<style type="text/css"> html, body {background-image: url("картинка"); background-attachment: fixed; background-repeat: no-repeat; background-position: right;} </style>
прозрачный форум:
<style type="text/css"> .punbb .main .container, .punbb td.tc3, .punbb .section .container,punbb td.tc2,.punbb td.tcr,#pun .tc2 {background-color: transparent; } </style>
Поделиться1742009-04-04 14:22:25
Death-san
не работает(
Поделиться1752009-04-04 14:48:21
Неведимка
что именно не работает?
Поделиться1762009-04-04 14:57:38
Death-san
у меня он стал прозрачным,но фон ттолько квадратный,не на весь страницу
Поделиться1772009-04-04 15:10:23
фон ттолько квадратный,не на весь страницу
в том то и дело, я же говорю, с фоном помаяться нужно. можно в фотошопе нарисовать подходящую, а как вы хотите, чтобы было? конечно, простой квадратик не очень смотреться будет) киньте картинку)
Поделиться1782009-04-04 17:03:36
пожалуйста
Поделиться1792009-04-04 17:59:24
Неведимка
Оо и как ты хочешь, чтобы она распологалась? как полосочка справа?
Поделиться1802009-04-04 18:01:03
Death-san
ну...не совсем.Я хочу что бы цвет становился всё белее и белее