Форум поддержки Gund.ru

Информация о пользователе

Привет, Гость! Войдите или зарегистрируйтесь.


Вы здесь » Форум поддержки Gund.ru » Дизайн форумов » Самые Часто Используемые Скрипты


Самые Часто Используемые Скрипты

Сообщений 1 страница 27 из 27

1

И так тема создана не для флуда!

Тема будет перенесена со временем в новый форум)

Отредактировано Admistrator (2008-05-13 18:56:27)

0

2

Ширина таблиц на главной

Код:
<style>
#pun {width:ЗНАЧЕНИЕ}
</style>

Цвет фона статус строки цвет поля с названием форума

Код:
<style>
.pa-title {background-color: black}

#pun #pun-index #pun-crumbs1 .crumbs{background-color: aqua; color: red}
</style>

Цвет тему просматривают, рамка вокруг места для написания поста, смена цвета надписи "напишите ваше сообщение и нажмите отправить"

Код:
<style>
#pun #pun-viewtopic #pun-main .modmenu .container , #pun #pun-viewtopic #pun-main .modmenu .container b {color: red}

#pun #pun-viewtopic #pun-main .formal #post fieldset legend span {background-color: black ; color: white}

#pun #pun-viewtopic #pun-main .formal #post fieldset {border-color: red}
</style>

Первый блок - тему просматривают(цвет)
второй - "напишите ваваше сообщение и нажмите отправить" (цвет фона и цвет самого текста)
третий - "рамка"

Цвет ссылки на профиль(НИК, при нажатии на него -профиль)

Код:
<style>
#pun #pun-userlist #pun-main .usertable .container table tbody .altstyle .tcl .usersname, 
#pun #pun-userlist #pun-main .usertable .container table tbody tr .tcl .usersname a:link {color: red;}

#pun #pun-userlist #pun-main .usertable .container table tbody .altstyle .tcl .usersname,
#pun #pun-userlist #pun-main .usertable .container table tbody tr .tcl .usersname a:hover {color: black;}

#pun #pun-userlist #pun-main .usertable .container table tbody .altstyle .tcl .usersname, 
#pun #pun-userlist #pun-main .usertable .container table tbody tr .tcl .usersname a:visited {color: white} 

</style>

Первый блок - цвет просто ссылки
Второй блок - цвет ссылки под курсором
Третий блок - посещенная ссылка!!!

Сделать все данные пользователя по центру

Код:
<style type="text/css">
.pa-adnote{ text-align: center;}
.pa-from{ text-align: center;}
.pa-reg{ text-align: center;}
.pa-posts{ text-align: center;}
.pa-reputation{ text-align: center;}
.pa-sex{ text-align: center;}
.pa-icq{ text-align: center;}
.pa-ip{ text-align: center;}
.pa-online{ text-align: center;}
.pa-age{ text-align: center;}
.pa-mailagent{ text-align: center;}
.pa-reg { text-align: center;}
.pa-avatar, .pa-title, .pa-author { text-align: center;}
.pa-time-visit{ text-align: center;}
.pa-last-visit{ text-align: center;}
.pa-fld1{ text-align: center;}
.pa-fld2{ text-align: center;}
.pa-fld3{ text-align: center;}
</style>

0

3

Ссылки при наведении становяться заданого цвета

Код:
<style>
.punbb a:hover {color: ЦВЕТ} 
</style>

Цвет линии , отделяющий подпись

Код:
<style>
#pun #pun-viewtopic #pun-main .topic .container .post-body .post-box .post-content .post-sig dt {background-color: red}
</style>

Делает по центру абсолютно всё на главной

Код:
<style>

HTML, BODY , #pun, #pun #pun-index #pun-main .category .container table thead tr .tcl, #pun-main .category .container table .hasicon .alt1 .tcl .intd .tclcon, 
#pun-main .category .container table .hasicon .alt2 .tcl .intd .tclcon {text-align: center}
</style>


Размер текста и шрифт

Код:
<style>
HTML, BODY {font-family:ШРИФТ ;font-size: Размер }
</style>

Варианты размеров: xx-small, x-small, small, medium, large, x-large, xx-large

Убрать ссылку "поиск"

Код:
<style>
#pun #pun-index #pun-navlinks .container #navsearch a span, #pun .punbb #pun-navlinks .container #navsearch a span,
#pun #pun-index #pun-navlinks .container #navsearch, #pun .punbb #pun-navlinks .container #navsearch,
{ display: none }
</style>

Убрать строку "зарегестрированых пользователей"

Код:
<style type="text/css">
#pun #pun-index #pun-stats .statscon .container .item3 span, #pun #pun-index #pun-stats .statscon .container .item3 strong {display: none}
</style>

Фон статистики и цвет самой надписи "статистика"

Код:
<style>
#pun #pun-index #pun-stats h2{background-image: url(ССЫЛЬ) ; color: red}
</style>

Цвет фона статус строки цвет поля с названием форума

Код:
<style>
.pa-title {background-color: black}

#pun #pun-index #pun-crumbs1 .crumbs{background-color: aqua; color: red}
</style>

PS:
color- цвет текста
background-color- цвет фона
Первая строка в коде: цвет ссылок пользователя
2: фон поля, где салово "обьявление" и цвет самого слова
3: цвет фона статус-строки
4: цвет поля с названием форума и цвет самого названия форума

0

4

Смена цвета ника

Код:
<script type="text/javascript">
var arr=document.links
var arr1=new Array ("Ник")

for (x in arr)
{for (y in arr1)
{if (arr[x].innerHTML==arr1[y])
{
arr[x].innerHTML="<font color='цвет'>"+arr[x].innerHTML+"</font>"}
}}

Смена фона

Код:
<style>
HTML, BODY {background-image: url(ссылка на картинку)}
</style>

Изменение слова модератор

Код:
<script language="JavaScript">
    mod="Модератор"

    str=document.URL
    page=str.substring(str.lastIndexOf('/')+1)
    if( page=="" || page=="index.php" ) {
      arr=document.getElementsByTagName("span")
      i=0
      while(arr[i])
      {
        if(arr[i].className=="modlist")
            arr[i].innerHTML = "(" + mod + arr[i].innerHTML.substring(11)
        i++
      }
    }
    </script>

Мордератор - можно заменить на своё

Убирает слово объявление

Код:
<style type="text/css">
#pun-announcement h2 {display: none}
#pun-announcement .container {padding-top: 1em}
</style>

Изменение шрифта форума

Код:
<style>
.pa-title {font-family : "Comic Sans MS";}
BODY A{font-family : "Comic Sans MS";}
</style>

Comic Sans MS - можно изменить на желаймый шрифт

Отредактировано Flaffy (2008-05-13 20:21:12)

0

5

Flaffy
А куда вставлять смену цвета ника. Желательно поподробнее спасибки))))

0

6

Ольчик
в верх  :flag:  пишешь свой ник который у тебя на форуме а цвет берёшь из палитры цветов

0

7

Flaffy
Нет это я поняла, а куда его устанавливать этот код?

0

8

в настройках в HTML верх

0

9

Нет у меня не получилось

0

10

Cкрипт универсального цветовыделения на 6 групп

Вставляем в ХТМЛ-низ

Через запятую, в кавычках, пишем имена,а то что выделено меняем на свои цвета.

Код:
<script type="text/javascript">
    var arr=document.links
    var arr1=new Array ("ДОМИНИОН", "")
    var arr2=new Array ("ПСИХованная", "", "", "")
    var arr3=new Array ("", "", "", "")
    var arr4=new Array ("Lexx", "Zebra", "", "", "")
    var arr5=new Array ("Lexx", "Zebra", "", "", "")
    var arr6=new Array ("Lexx", "Zebra", "", "", "")
    for (x in arr)
    {for (y in arr1)
    {if (arr[x].innerHTML==arr1[y])
    {
    arr[x].innerHTML="<font color='red'>"+arr[x].innerHTML+"</font>"}
    }}

    for (x in arr)
    {for (j in arr2)
    {if (arr[x].innerHTML==arr2[j])
    {
    arr[x].innerHTML="<font color='goldenrod'>"+arr[x].innerHTML+"</font>"}}}

    for (x in arr)
    {for (l in arr3)
    {if (arr[x].innerHTML==arr3[l])
    {
    arr[x].innerHTML="<font color='darkorange'>"+arr[x].innerHTML+"</font>"}}}

    for (x in arr)
    {for (j in arr4)
    {if (arr[x].innerHTML==arr4[j])
    {
    arr[x].innerHTML="<font color='steelblue'>"+arr[x].innerHTML+"</font>"}}}

    for (x in arr)
    {for (p in arr5)
    {if (arr[x].innerHTML==arr5[p])
    {
    arr[x].innerHTML="<font color='steelblue'>"+arr[x].innerHTML+"</font>"}}}

    for (x in arr)
    {for (s in arr6)
    {if (arr[x].innerHTML==arr6[s])
    {
    arr[x].innerHTML="<font color='steelblue'>"+arr[x].innerHTML+"</font>"}}}

    </script>

0

11

Индикатор групп

Код:
<script type="text/javascript">
var text="<center><font color=Red> Администратор </font> | <font color=[b]Blue[/b]> Координатор </font>  |  <font color=[b]Green[/b]> Модератор </font></center>"
pa=document.getElementById("pun-stats")
pa.style.position = "relative"
pa.innerHTML = "<div style=\"position:absolute; z-index:2; center: 10px; top: 40px; width: 100%;\">"+text+"</div>"+ pa.innerHTML
</script>

То что выделено можно менять (цвет и названия)

0

12

Flaffy написал(а):

Код:
<script language="JavaScript">
    mod="Модератор"

    str=document.URL
    page=str.substring(str.lastIndexOf('/')+1)
    if( page=="" || page=="index.php" ) {
      arr=document.getElementsByTagName("span")
      i=0
      while(arr[i])
      {
        if(arr[i].className=="modlist")
            arr[i].innerHTML = "(" + mod + arr[i].innerHTML.substring(11)
        i++
      }
    }
    </script>

а где здесь цвет поменять на другой?

0

13

При наведениии на сссылку появляется текст, который постепенно увеличивается и меняет цвет,а на его месте появляется другой

<html>
<head>
<title>При наведениии на сссылку появляется текст, который постепенно увеличивается и меняет цвет,а на его месте появляется другой.</title>
<script language="JavaScript" type="text/javascript">
// the number of rings
var ringnumber=4

// do not edit the code below
var x,y
var timer
var i_fontsize=new Array
var step=new Array
ringnumber=ringnumber-1
var maxfontsize=600
var startfontsize=1

for (i=0;i<=ringnumber;i++) {
i_fontsize[i]=startfontsize
step[i]=ringnumber*i*10
startfontsize=(maxfontsize/ringnumber)*(i+1)
}

function cursorposition(e){
x=event.clientX+document.body.scrollLeft
y=event.clientY+document.body.scrollTop
}

function showrings() {
if (document.all) {
for (i=0;i<=ringnumber;i++) {
  if (i_fontsize[i]>=maxfontsize) {i_fontsize[i]=1;step[i]=1}
  var thisring=eval("document.all.ring"+i+".style")
  thisring.visibility="visible"
  thisring.fontSize=i_fontsize[i]
  thisring.color="rgb("+Math.floor(i_fontsize[i]/2.0)+","+Math.floor(i_fontsize[i]/2.0)+",255)"
     thisring.posLeft=x-(Math.floor(i_fontsize[i]/3))
  thisring.posTop=y-(Math.floor(i_fontsize[i]/1.4))
  step[i]+=2
  i_fontsize[i]+=step[i]
}
timer=setTimeout("showrings()",50)
}
}

function hiderings(e){
if (document.all) {
clearTimeout(timer)
startfontsize=0
for (i=0;i<=ringnumber;i++) {
  thisring=eval("document.all.ring"+i+".style")
  thisring.visibility="hidden"
  i_fontsize[i]=startfontsize
  step[i]=ringnumber*i*10
  startfontsize=Math.floor((maxfontsize/ringnumber))*(i+1)
}
}
}

if (document.all) {
document.onmousemove=cursorposition;
}

if (document.all) {
for (i=0;i<=ringnumber;i++) {
document.write("<DIV id='ring"+i+"' style='position:absolute;font-family:Verdana;'>°</DIV>")
}
document.write("<DIV style='position:relative;'>")
}
</script>
</head>
<body>
<a href="http://scriptic.narod.ru" onMouseOver="showrings()" onMouseOut="hiderings()">Scriptic.narod.ru</a>
</body>
</html>

Дизайн Scriptic

0

14

Ссылки светятся ( при наведении курсора)

<html>
<head>
<title>Ссылки светятся ( при наведении курсора)</title>
<style type="text/css">
.nav { COLOR: #ffff00; FONT-FAMILY: arial; FONT-SIZE: 10pt; LEFT: 150px; POSITION: absolute; TEXT-DECORATION: none}
</style>
<SCRIPT language="JavaScript">
<!--
var i_strength=0
var max_strength=6
var shadowcolor="red"
var timer
var speed=50
var thisobj
function stopfilter(thisdiv){
if (document.all) {
clearTimeout(timer)
thisobj=thisdiv
thisobj.style.filter=" "
}
}
function startfilter(thisdiv){
if (document.all) {
clearTimeout(timer)
thisobj=thisdiv
morefilter()
}
}
function morefilter(){
if (i_strength <=max_strength) {
thisobj.style.filter="glow(color="+shadowcolor+", strength="+i_strength+")"
i_strength++
timer = setTimeout("morefilter()",speed)
}
else {
clearTimeout(timer)
lessfilter()
}
}
function lessfilter(){
if (i_strength >=0) {
thisobj.style.filter="glow(color="+shadowcolor+", strength="+i_strength+")"
i_strength--
timer = setTimeout("lessfilter()",speed)
}   
else {
clearTimeout(timer)
morefilter()
}
}
//  -->
</SCRIPT>
</head>
<body>
<div class="nav" id="news" onmouseout="stopfilter(this)" onmouseover="startfilter(this)" style="TOP: 10px"><a href="http://studia.scriptic.ru" style="color: #ffff00">ГЛАВНАЯ СТРАНИЦА</a></div>
<div class="nav" id="contact" onmouseout="stopfilter(this)" onmouseover="startfilter(this)" style="TOP: 30px"><a href="http://studia.scriptic.ru" style="color: #ffff00">JAVASCRIPT</a></div>
</body>
</html>

Дизайн Scriptic

0

15

Ссылки показываются все на одном месте, меняются с красивым эффектом.

<html>
<head>
<title>Ссылки показываются все на одном месте, меняются с красивым эффектом.</title>
</head>
<body onLoad="begin()">
<script>
<!--
function correct(){
if (finished){
setTimeout("begin()",3000)
}
return true
}
window.onerror=correct
function begin(){
if (!document.all)
return
if (maxheight==null)
maxheight=temp.offsetHeight
whatsnew.style.height=maxheight
temp.style.display="none"
c=1
finished=true
change()
}
//-->
</script>
<style>
<!--
#whatsnew a{color:ffffff;text-decoration:none}
#whatsnew, #temp {font-weight:bold; font-family:Arial}
#whatsnew a:hover{color:red}
-->
</style>
<script language="javascript1.2">
<!--
var head=''
var top=0
var maxheight
var finished=false
var tickers=new Array()
tickers[0]='<a href="http://scriptic.ru">Красивый эффект.</a>'
tickers[1]='<a href="http://scriptic.ru">Это сообщение - ссылка.</a>'
tickers[2]='<a href="http://scriptic.ru">Меняет цвет при наведении мыши.</a>'
tickers[3]='<a href="http://scriptic.ru">Несложный короткий код.</a>'
tickers[4]='<a href="http://scriptic.ru">Один из множества скриптов с scriptic.ru.</a>'
for (i=1;i<=tickers.length-1;i++){
if (tickers[i].length>=tickers[top].length)
top=i-1
}
if (document.all)
document.write('<span id="whatsnew" style="width:100%;height=10;filter:revealTrans(duration=2,transition=19)">'+tickers[0]+'</span>')
function change(){
whatsnew.innerHTML=''
whatsnew.filters.revealTrans.apply()
whatsnew.filters.revealTrans.play()
whatsnew.innerHTML=tickers[c]
if (c==tickers.length-1)
c=0
else
c+=1
setTimeout("change()",5000)
}
if (document.all)
document.write('<span id=ns style="display:none;">')
//-->
</script>
</span>
<span id=temp style="position:absolute;left:0;top:0" style=&{head};>
<script>
<!--
if (document.all){
temp.style.width=whatsnew.style.width
document.write(tickers[top])
}
//-->
</script>
</span><br>
</center>
</body>
</html>

Дизайн Scriptic

0

16

Скрипт выдачи случайных ссылок.

<html>
<head>
<title>Скрипт выдачи случайных ссылок.</title>
<SCRIPT language="JavaScript">
<!-- This script and many more are available free online at -->
<!-- Begin
function go_to(url) {
window.location=url;
}
function rand_link() {
var a;
a = 1+Math.round(Math.random()*4);   // a = random number between 1-4
if (a==1) go_to("http://script.ru/index.shtml");
if (a==2) go_to("http://yndex.ru/");
if (a==3) go_to("http://rambler.ru/");
if (a==4) go_to("http://studia.script.ru/");
}
// End -->
</SCRIPT>
</head>
<body>
<CENTER>
<FORM NAME="myForm">
<INPUT TYPE="button" NAME="myButton" VALUE="Случайная ссылка"
onClick="rand_link()">
</FORM>
</CENTER>
</body>
</html>

Дизайн Scriptic

0

17

Скрипт Падающие листья

Код:
<SCRIPT language=JavaScript1.2>
var no = 12;//добавьте колличество листиков 
var speed = 5;//измените скорость падения листьев 
var snowflake = "http://svweb.narod.ru/image/list2.gif";//укажите путь к папке с листьями

var ns4up = (document.layers) ? 1 : 0;
var ie4up = (document.all) ? 1 : 0;
var dx, xp, yp; 
var am, stx, sty; 
var i, doc_width = 1024, doc_height = 768;
if (ns4up) {
doc_width = self.innerWidth;
doc_height = self.innerHeight;
} else if (ie4up) {
doc_width = document.body.clientWidth;
doc_height = document.body.clientHeight;
}
dx = new Array();
xp = new Array();
yp = new Array();
am = new Array();
stx = new Array();
sty = new Array();
for (i = 0; i < no; ++ i) {  
dx[i] = 0;         
xp[i] = Math.random()*(doc_width-50); 
yp[i] = Math.random()*doc_height;
am[i] = Math.random()*20;        
stx[i] = 0.02 + Math.random()/20; 
sty[i] = 0.7 + Math.random();   
if (ns4up) {                  
if (i == 0) {
document.write("<layer name=\"dot"+ i +"\" left=\"15\" ");
document.write("top=\"15\" visibility=\"show\"><img src=\"");
document.write(snowflake + "\" border=\"0\"></layer>");
} else {
document.write("<layer name=\"dot"+ i +"\" left=\"15\" ");
document.write("top=\"15\" visibility=\"show\"><img src=\"");
document.write(snowflake + "\" border=\"0\"></layer>");
   }
} else if (ie4up) {
if (i == 0) {
document.write("<div id=\"dot"+ i +"\" style=\"POSITION: ");
document.write("absolute; Z-INDEX: "+ i +"; VISIBILITY: ");
document.write("visible; TOP: 15px; LEFT: 15px;\"><img src=\"");
document.write(snowflake + "\" border=\"0\"></div>");
} else {
document.write("<div id=\"dot"+ i +"\" style=\"POSITION: ");
document.write("absolute; Z-INDEX: "+ i +"; VISIBILITY: ");
document.write("visible; TOP: 15px; LEFT: 15px;\"><img src=\"");
document.write(snowflake + "\" border=\"0\"></div>");
      }
   }
}
function snowNS() { 
for (i = 0; i < no; ++ i) {  
yp[i] += sty[i];
if (yp[i] > doc_height-50) {
xp[i] = Math.random()*(doc_width-am[i]-20);
yp[i] = 0;
stx[i] = 0.02 + Math.random()/30;
sty[i] = 0.7 + Math.random();
doc_width = self.innerWidth;
doc_height = self.innerHeight;
}
dx[i] += stx[i];
document.layers["dot"+i].top = yp[i];
document.layers["dot"+i].left = xp[i] + am[i]*Math.sin(dx[i]);
}
setTimeout("snowNS()", speed);
}
function snowIE() { 
for (i = 0; i < no; ++ i) { 
yp[i] += sty[i];
if (yp[i] > doc_height-50) {
xp[i] = Math.random()*(doc_width-am[i]-20);
yp[i] = 0;
stx[i] = 0.02 + Math.random()/30;
sty[i] = 0.7 + Math.random();
doc_width = document.body.clientWidth;
doc_height = document.body.clientHeight;
}
dx[i] += stx[i];
document.all["dot"+i].style.pixelTop = yp[i];
document.all["dot"+i].style.pixelLeft = xp[i] + am[i]*Math.sin(dx[i]);
}
setTimeout("snowIE()", speed);
}
if (ns4up) {
snowNS();
} else if (ie4up) {
snowIE();
}
</SCRIPT>

0

18

Скрипт Падающие звёзды

<SCRIPT language=JavaScript1.2>
var no = 30;
var speed = 6;
var snowflake = "http://svweb.narod.ru/image/zv6.gif";

var ns4up = (document.layers) ? 1 : 0;
var ie4up = (document.all) ? 1 : 0;
var dx, xp, yp;
var am, stx, sty;
var i, doc_width = 1024, doc_height = 768;
if (ns4up) {
doc_width = self.innerWidth;
doc_height = self.innerHeight;
} else if (ie4up) {
doc_width = document.body.clientWidth;
doc_height = document.body.clientHeight;
}
dx = new Array();
xp = new Array();
yp = new Array();
am = new Array();
stx = new Array();
sty = new Array();
for (i = 1; i < no; ++ i) { 
dx[i] = 1;         
xp[i] = Math.random()*(doc_width-5);
yp[i] = Math.random()*doc_height;
am[i] = Math.random()*6;         
stx[i] = 0.05 + Math.random()/30;
sty[i] = 0.7 + Math.random();   
if (ns4up) {                 
if (i == 1) {
document.write("<layer name=\"dot"+ i +"\" left=\"15\"");
document.write("top=\"15\" visibility=\"show\"><img src=\"");
document.write(snowflake + "\" border=\"0\"></layer>");
} else {
document.write("<layer name=\"dot"+ i +"\" left=\"15\" ");
document.write("top=\"15\" visibility=\"show\"><img src=\"");
document.write(snowflake + "\" border=\"0\"></layer>");
   }
} else if (ie4up) {
if (i == 1) {
document.write("<div id=\"dot"+ i +"\" style=\"POSITION: ");
document.write("absolute; Z-INDEX: "+ i +"; VISIBILITY: ");
document.write("visible; TOP: 15px; LEFT: 15px;\"><img src=\"");
document.write(snowflake + "\" border=\"0\"></div>");
} else {
document.write("<div id=\"dot"+ i +"\" style=\"POSITION: ");
document.write("absolute; Z-INDEX: "+ i +"; VISIBILITY: ");
document.write("visible; TOP: 15px; LEFT: 15px;\"><img src=\"");
document.write(snowflake + "\" border=\"0\"></div>");
      }
   }
}
function snowNS() {
for (i = 1; i < no; ++ i) { 
yp[i] += sty[i];
if (yp[i] > doc_height-5) {
xp[i] = Math.random()*(doc_width-am[i]-5);
yp[i] = 1;
stx[i] = 0.05 + Math.random()/30;
sty[i] = 0.7 + Math.random();
doc_width = self.innerWidth;
doc_height = self.innerHeight;
}
dx[i] += stx[i];
document.layers["dot"+i].top = yp[i];
document.layers["dot"+i].left = xp[i] + am[i]*Math.sin(dx[i]);
}
setTimeout("snowNS()", speed);
}
function snowIE() {
for (i = 1; i < no; ++ i) {
yp[i] += sty[i];
if (yp[i] > doc_height-5) {
xp[i] = Math.random()*(doc_width-am[i]-5);
yp[i] = 1;
stx[i] = 0.05 + Math.random()/30;
sty[i] = 0.7 + Math.random();
doc_width = document.body.clientWidth;
doc_height = document.body.clientHeight;
}
dx[i] += stx[i];
document.all["dot"+i].style.pixelTop = yp[i];
document.all["dot"+i].style.pixelLeft = xp[i] + am[i]*Math.sin(dx[i]);
}
setTimeout("snowIE()", speed);
}
if (ns4up) {
snowNS();
} else if (ie4up) {
snowIE();
}
</SCRIPT>

0

19

Замена стандартных картинок в сообщении( забыла как называется) там где смайлы добавить картинку и тд в этом скрипте они заменяются на розовые значки, но там где адреса можно свои впихнуть, главное чтоб понятно было где что

Код:
<style>
#form-buttons table, .punbb .formal textarea {width:99%}
#form-buttons td {padding:0; line-height:0; background-position:center; background-repeat:no-repeat}
#form-buttons td img {height:26px; width:100%}
#button-font {background-image:url('http://img210.imageshack.us/img210/4083/fontnj6.png')}
#button-size {background-image:url('http://img153.imageshack.us/img153/5050/fontsizeox5.png')}
#button-bold {background-image:url('http://img517.imageshack.us/img517/2178/boldwm7.png')}
#button-italic {background-image:url('http://img208.imageshack.us/img208/4606/italicnr6.png')}
#button-underline {background-image:url('http://img210.imageshack.us/img210/8162/underlineqy0.png')}
#button-strike {background-image:url('http://img153.imageshack.us/img153/1719/88603494zc7.png')}
#button-left {background-image:url('http://img297.imageshack.us/img297/148/alignlefths8.png')}
#button-center {background-image:url('http://img254.imageshack.us/img254/7906/aligncenterjp7.png')}
#button-right {background-image:url('http://img329.imageshack.us/img329/4710/alignrightmt1.png')}
#button-link {background-image:url('http://img329.imageshack.us/img329/4056/linkcp1.png')}
#button-email {background-image:url('http://img182.imageshack.us/img182/8940/mailaf0.png')}
#button-image {background-image:url('http://img210.imageshack.us/img210/7561/picurlml3.png')}
#button-hide {background-image:url('http://img210.imageshack.us/img210/5066/hidetxtzk6.png')}
#button-quote {background-image:url('http://img210.imageshack.us/img210/4836/qouteql6.png')}
#button-code {background-image:url('http://img182.imageshack.us/img182/203/codetd7.png')}
#button-color {background-image:url('http://img210.imageshack.us/img210/3773/colorsnq6.png')}
#button-smile {background-image:url('http://img153.imageshack.us/img153/6584/smilesgu1.png')}
#button-keyboard {background-image:url('http://img297.imageshack.us/img297/6546/keyboardez9.png')}
#button-imageup {background-image:url('http://img517.imageshack.us/img517/8963/loadimageab4.png')}
</style>

0

20

LupusNox написал(а):

Скрипт Падающие звёзды

А его в ХТМЛ низ вставлять?

0

21

Извиняюсь канешно за флуд, но у мя высвечиваеться как они падают и не видно листиков, одна надпись "рисунок".Что делать???

0

22

А есть скрипт падующие гильзы???

0

23

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

0

24

Таа, а можно сделать так, что бы лестья, допустим, падала до конца обьявления????

0

25

неа

0

26

Еще вопросXD Можео сделать так, чтобы звезда летела ни вниз, а ,допустим, в право?

0

27

может быть и можно но не знаю )))))

0


Вы здесь » Форум поддержки Gund.ru » Дизайн форумов » Самые Часто Используемые Скрипты