¤¤ Univerzita Karlova ¤¤

Объявление

Игра
Дата - 20 сентября 2009 года, время (18.00-20.00) Погода + 10 градусов, сумерки, дует пронизывающий ветер, не исключен сильный ливень Расходимся из клуба по своим делам. Выложено дополнение к сюжету. Жду критики=)
Важные ссылки
Правила форума!
Сюжет
Факультеты
Анкетирование
Реклама
Заходим под ником PR, пароль:1234 Реклама строго взаимная! Будем проверять! Наш баннер
Гостям
Регистрируйтесь, будем рады всем)) Ролевая совсем молодая, но перспективная) Вам не видна большая часть форума!
Администрация
Paula Fàbregas ( связь с ней - 421-313-717)
Модераторы
Dominic Rose - моя правая рука)
Jane Vraždil
Caren Millen
Den Old
Аватармейкеры
Pilat Beneš

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

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


Вы здесь » ¤¤ Univerzita Karlova ¤¤ » Флудилка) » Палата намбер уан. Готовимся к днюхе.


Палата намбер уан. Готовимся к днюхе.

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

1

Итак *барабанная дробь* оставляю вам флудилку.. все что хотите, говорите по поводу днюхи... я не буду читать, честно =)

0

2

Так, люди. Я предлагаю изменить картинку в объявлении. Поменять на эту:
http://s47.radikal.ru/i116/0903/24/ac1775081b75t.jpg

кто "за"?

0

3

Код:
</center>
</SCRIPT>

</STYLE>
<script language="JavaScript1.2">
<!-- Begin
var no = 15; // image number or falling rate
var speed = 4; // the lower the number the faster the image moves
var snow = new Array();
snow[0] = "http://forumupload.ru/uploads/0002/25/06/9232-1.gif"
snow[1] = "http://forumupload.ru/uploads/0002/25/06/9232-1.gif"
snow[2] = "http://forumupload.ru/uploads/0002/25/06/9232-1.gif"

var ns4up = (document.layers) ? 1 : 0;  // browser sniffer
var ie4up = (document.all) ? 1 : 0;
var ns6up = (document.getElementById&&!document.all) ? 1 : 0;
var dx, xp, yp;    // coordinate and position variables
var am, stx, sty;  // amplitude and step variables
var i, doc_width = 800, doc_height = 1800;

if (ns4up||ns6up) {
        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();
j = 0;

for (i = 0; i < no; ++ i) {
        dx[i] = 0;                        // set coordinate variables
        xp[i] = Math.random()*(doc_width-50);  // set position variables
        yp[i] = Math.random()*doc_height;
        am[i] = Math.random()*20;         // set amplitude variables
        stx[i] = 0.02 + Math.random()/10; // set step variables
        sty[i] = 0.7 + Math.random();     // set step variables
        if (ns4up) {                      // set layers
                if (i == 0) {
                        document.write("<layer name=\"dot"+ i +"\" left=\"15\" top=\"15\" visibility=\"show\"><img src=\""+ snow[j] + "\" border=\"0\"></layer>");
                } else {
                        document.write("<layer name=\"dot"+ i +"\" left=\"15\" top=\"15\" visibility=\"show\"><img src=\""+ snow[j] + "\" border=\"0\"></layer>");
                }        } else if (ie4up||ns6up) {                if (i == 0) 
{
                        document.write("<div id=\"dot"+ i +"\" style=\"POSITION: absolute; Z-INDEX: "+ i +"VISIBILITY: visible; TOP: 15px; LEFT: 15px; width:1;\"><img src=\"" + snow[j] + "\" border=\"0\"></div>");
                } else {
                        document.write("<div id=\"dot"+ i +"\" style=\"POSITION: absolute; Z-INDEX: "+ i +"VISIBILITY: visible; TOP: 15px; LEFT: 15px; width:1;\"><img src=\"" + snow[j] + "\" border=\"0\"></div>");
                }
        }
        if (j == (snow.length-1)) { j = 0; } else { j += 1; }
}

function snowNS() {  // Netscape main animation function
        for (i = 0; i < no; ++ i) {  // iterate for every dot
                yp[i] -= sty[i];                if (yp[i] < -50) {
                        xp[i] = Math.random()*(doc_width-am[i]-30);
                        yp[i] = doc_height;
                        stx[i] = 0.02 + Math.random()/10;
                        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]+pageYOffset;
                document.layers["dot"+i].left = xp[i] + 
am[i]*Math.sin(dx[i]);
        }
        setTimeout("snowNS()", speed);
}

function snowIE_NS6() {  // IE main animation function
        for (i = 0; i < no; ++ i) {  // iterate for every dot
                yp[i] -= sty[i];
                if (yp[i] < -50) {
                        xp[i] = Math.random()*(doc_width-am[i]-30);
                        yp[i] = doc_height;
                        stx[i] = 0.02 + Math.random()/10;
                        sty[i] = 0.7 + Math.random();
                        doc_width = ns6up?window.innerWidth-5:document.body.clientWidth;
                        doc_height = ns6up?window.innerHeight-5:document.body.clientHeight;
                }
                dx[i] += stx[i];
                if (ie4up){
                document.all["dot"+i].style.pixelTop = yp[i]+document.body.scrollTop;
                document.all["dot"+i].style.pixelLeft = xp[i] + am[i]*Math.sin(dx[i]);
                }
                else if (ns6up){
                document.getElementById("dot"+i).style.top=yp[i]+pageYOffset;
                document.getElementById("dot"+i).style.left=xp[i] + am[i]*Math.sin(dx[i]);
                }
        }
        setTimeout("snowIE_NS6()", speed);
}

if (ns4up) {
        snowNS();
} else if (ie4up||ns6up) {
        snowIE_NS6();
}
// End -->
</script>

скрипт на летящие вверх жёлтые звёздочки

0

4

Код:
<a href="http://sababa.webhost.ru" target=_blank> <img src="http://sababa.webhost.ru/image/BANNIER.gif" border="0"alt=" Cкрипты, шаблоны, курсоры, часы и знаменитости." width=125height=105></a></center>
</SCRIPT>

</STYLE>
<script language="JavaScript1.2">
<!-- Begin
var no = 15; // image number or falling rate
var speed = 4; // the lower the number the faster the image moves
var snow = new Array();
snow[0] = "http://img151.imageshack.us/img151/325/on181jr.gif"
snow[1] = "http://img151.imageshack.us/img151/325/on181jr.gif"
snow[2] = "http://img151.imageshack.us/img151/325/on181jr.gif"

var ns4up = (document.layers) ? 1 : 0;  // browser sniffer
var ie4up = (document.all) ? 1 : 0;
var ns6up = (document.getElementById&&!document.all) ? 1 : 0;
var dx, xp, yp;    // coordinate and position variables
var am, stx, sty;  // amplitude and step variables
var i, doc_width = 800, doc_height = 1800;

if (ns4up||ns6up) {
        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();
j = 0;

for (i = 0; i < no; ++ i) {
        dx[i] = 0;                        // set coordinate variables
        xp[i] = Math.random()*(doc_width-50);  // set position variables
        yp[i] = Math.random()*doc_height;
        am[i] = Math.random()*20;         // set amplitude variables
        stx[i] = 0.02 + Math.random()/10; // set step variables
        sty[i] = 0.7 + Math.random();     // set step variables
        if (ns4up) {                      // set layers
                if (i == 0) {
                        document.write("<layer name=\"dot"+ i +"\" left=\"15\" top=\"15\" visibility=\"show\"><img src=\""+ snow[j] + "\" border=\"0\"></layer>");
                } else {
                        document.write("<layer name=\"dot"+ i +"\" left=\"15\" top=\"15\" visibility=\"show\"><img src=\""+ snow[j] + "\" border=\"0\"></layer>");
                }        } else if (ie4up||ns6up) {                if (i == 0) 
{
                        document.write("<div id=\"dot"+ i +"\" style=\"POSITION: absolute; Z-INDEX: "+ i +"VISIBILITY: visible; TOP: 15px; LEFT: 15px; width:1;\"><img src=\"" + snow[j] + "\" border=\"0\"></div>");
                } else {
                        document.write("<div id=\"dot"+ i +"\" style=\"POSITION: absolute; Z-INDEX: "+ i +"VISIBILITY: visible; TOP: 15px; LEFT: 15px; width:1;\"><img src=\"" + snow[j] + "\" border=\"0\"></div>");
                }
        }
        if (j == (snow.length-1)) { j = 0; } else { j += 1; }
}

function snowNS() {  // Netscape main animation function
        for (i = 0; i < no; ++ i) {  // iterate for every dot
                yp[i] -= sty[i];                if (yp[i] < -50) {
                        xp[i] = Math.random()*(doc_width-am[i]-30);
                        yp[i] = doc_height;
                        stx[i] = 0.02 + Math.random()/10;
                        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]+pageYOffset;
                document.layers["dot"+i].left = xp[i] + 
am[i]*Math.sin(dx[i]);
        }
        setTimeout("snowNS()", speed);
}

function snowIE_NS6() {  // IE main animation function
        for (i = 0; i < no; ++ i) {  // iterate for every dot
                yp[i] -= sty[i];
                if (yp[i] < -50) {
                        xp[i] = Math.random()*(doc_width-am[i]-30);
                        yp[i] = doc_height;
                        stx[i] = 0.02 + Math.random()/10;
                        sty[i] = 0.7 + Math.random();
                        doc_width = ns6up?window.innerWidth-5:document.body.clientWidth;
                        doc_height = ns6up?window.innerHeight-5:document.body.clientHeight;
                }
                dx[i] += stx[i];
                if (ie4up){
                document.all["dot"+i].style.pixelTop = yp[i]+document.body.scrollTop;
                document.all["dot"+i].style.pixelLeft = xp[i] + am[i]*Math.sin(dx[i]);
                }
                else if (ns6up){
                document.getElementById("dot"+i).style.top=yp[i]+pageYOffset;
                document.getElementById("dot"+i).style.left=xp[i] + am[i]*Math.sin(dx[i]);
                }
        }
        setTimeout("snowIE_NS6()", speed);
}

if (ns4up) {
        snowNS();
} else if (ie4up||ns6up) {
        snowIE_NS6();
}
// End -->
</script>

или мигающие цветные звзёдочки летят

0

5

йа согласно)

0

6

Caren Millen написал(а):

йа согласно)

надо дождаться согласия остальных) я пока скопирую сюда этот код объявления, вставлю туда другую картинку. посомтрю, как выглядит. если норм - поменяю на старый, а код нового сюда кину.

0

7

Dominic Rose написал(а):

надо дождаться согласия остальных) я пока скопирую сюда этот код объявления, вставлю туда другую картинку. посомтрю, как выглядит. если норм - поменяю на старый, а код нового сюда кину.

о_О
ну даваай))))))

0

8

Код:
<table border="0" cellspacing="1" cellpadding="1" width="100%">
<tr>
<td align=center><b><font color=green>Игра</font></b><br><i> <font color=green>
Дата - 20 сентября 2009 года
Погода + 20 градусов, солнечно, все еще чувствуется лето
 Все желающие идут играть в бар =) Там у нас намечается небольшой мордобойчик, который я устрою =)</font></i></td>
<td align=center> <img src="http://s58.radikal.ru/i159/0903/21/e14140c75477.jpg" ></td>
<td align=center ><b><font color=green>Важные ссылки</font></b><br> <a href="http://univerzitakarlova.forumbb.ru/viewtopic.php?id=3">Правила форума!</a> <br><a href="http://univerzitakarlova.forumbb.ru/viewtopic.php?id=2">Сюжет</a> <br><a href="http://univerzitakarlova.forumbb.ru/viewtopic.php?id=5">Факультеты</a><br><a href="http://univerzitakarlova.forumbb.ru/viewforum.php?id=5">Анкетирование</a></td>
</tr>
<td align=center> <b><font color=green>Реклама</font></b><br><i><font color=green>Заходим под ником PR, пароль:1234 Реклама строго взаимная! Будем проверять!
<b>Наш баннер</b>
<a href="http://univerzitakarlova.forumbb.ru/" target="_blank"><img src="http://s52.radikal.ru/i135/0903/7d/e46c130f7efe.jpg" alt=""Univerzita Karlova» - the Czech value"" /></a></font></i></td>
<td align=center > <b><font color=green>Гостям</font></b><br> <i><font color=green>Регистрируйтесь, будем рады всем)) Ролевая совсем молодая, но перспективная) Вам не видна большая часть форума!</font></i></td>
<td align=center > <b><font color=green>Администрация</font></b><br><font color=green>Paula Fàbregas ( связь с ней - 421-313-717)</font><br><b><font color=green>Модераторы</font></b><br><i> <font color=green>Dominic Rose</font></i>
<br><i> Jane Vraždil</i></td>

</tr>
</table>

0

9

Код:
<table border="0" cellspacing="1" cellpadding="1" width="100%">
<tr>
<td align=center><b><font color=green>Игра</font></b><br><i> <font color=green>
Дата - 22 сентября 2009 года
Погода + 20 градусов, солнечно, все еще чувствуется лето
 Все желающие идут играть в бар =) Там у нас намечается небольшой мордобойчик, который я устрою =)</font></i></td>
<td align=center> <img src="http://s57.radikal.ru/i157/0903/b9/8b85684a45d2.jpg" ></td>
<td align=center ><b><font color=green>Важные ссылки</font></b><br> <a href="http://univerzitakarlova.forumbb.ru/viewtopic.php?id=3">Правила форума!</a> <br><a href="http://univerzitakarlova.forumbb.ru/viewtopic.php?id=2">Сюжет</a> <br><a href="http://univerzitakarlova.forumbb.ru/viewtopic.php?id=5">Факультеты</a><br><a href="http://univerzitakarlova.forumbb.ru/viewforum.php?id=5">Анкетирование</a></td>
</tr>
<td align=center> <b><font color=green>Реклама</font></b><br><i><font color=green>Заходим под ником PR, пароль:1234 Реклама строго взаимная! Будем проверять!
<b>Наш баннер</b>
<a href="http://univerzitakarlova.forumbb.ru/" target="_blank"><img src="http://s52.radikal.ru/i135/0903/7d/e46c130f7efe.jpg" alt=""Univerzita Karlova» - the Czech value"" /></a></font></i></td>
<td align=center > <b><font color=green>Гостям</font></b><br> <i><font color=green>Поздравляем с Днём Рождения нашу любимую Паулу!</font></i></td>
<td align=center > <b><font color=green>Администрация</font></b><br><font color=green>Paula Fàbregas ( связь с ней - 421-313-717)</font><br><b><font color=green>Модераторы</font></b><br><i> <font color=green>Dominic Rose</font></i>
<br><i> Jane Vraždil</i></td>

</tr>
</table>

0

10

Я в этом полный чайничек Х)))) Но мне нравится)))))

0

11

Dominic Rose
Прост супер;)

0


Вы здесь » ¤¤ Univerzita Karlova ¤¤ » Флудилка) » Палата намбер уан. Готовимся к днюхе.