UnioGame
Pentru a vedea continutul Forumului trebuie sa te inregistrezi !
Multumim.
Cautam Administratori,Super-Moderatori,Moderatori si Designeri , pentru detalii vizitati Sectiunea Anunturi ale Forumului.

Pentru mai multe informatii add madalinadrian76@yahoo.com
UnioGame
Pentru a vedea continutul Forumului trebuie sa te inregistrezi !
Multumim.
Cautam Administratori,Super-Moderatori,Moderatori si Designeri , pentru detalii vizitati Sectiunea Anunturi ale Forumului.

Pentru mai multe informatii add madalinadrian76@yahoo.com


HostName: Alpha RPG | /bonus | Oferim Helper/Lider - 30 ON! Address: 93.119.26.46:7777
 
Caut Staff si dau grade !

Distribuiţi|

Anunt in index

Vezi subiectul anterior Vezi subiectul urmator In jos
AutorMesaj
kê¢ôøьãe [;x]
User Activ
kê¢ôøьãe [;x]


Rank: User Activ
Mesaje : 133
Localizare : Caracal
Stare de spirit : Happpyy :*

EVIL.SYTES.NET
Connect EVIL.SYTES.NET: Cautam Donatori ! Cine vrea add madalinadrian76 ! Dam admine celor care doneaza minim 3 Euro .Anunt in index Empty
MesajSubiect: Anunt in index Anunt in index EmptyJoi Apr 04, 2013 9:31 am

P.A~~>Afisare~~>Pagina de start~~>Generalitati~~>Setari generale~~>Adresa forumului dvs directioneaza catre : Index Forum~~>Mesaj pe pagina de start~~>Continutul mesajului si adaugam:

Cod:
<style type="text/css">
/* Circle Text Styles */
#outerCircleText {
/* Optional - DO NOT SET FONT-SIZE HERE, SET IT IN THE script */
font-style: italic;
font-weight: bold;
font-family: 'comic sans ms', verdana, arial;
color: #ffffff;
/* End Optional */

/* Start Required - Do Not Edit */
position: absolute;top: 0;left: 0;z-index: 3000;cursor: default;}
#outerCircleText div {position: relative;}
#outerCircleText div div {position: absolute;top: 0;left: 0;text-align: center;}
/* End Required */
/* End Circle Text Styles */
</style>
<script type="text/javascript">

/* Circling text trail- Tim Tilton
  Website: http://www.tempermedia.com/
  Visit: http://www.dynamicdrive.com/ for Original Source and tons of scripts
  Modified Here for more flexibility and modern browser support
  Modifications as first seen in http://www.dynamicdrive.com/forums/
  username:jscheuer1 - This notice must remain for legal use
  */

;(function(){

// Your message here (QUOTED STRING)
var msg = "MonsterCommunity";

/* THE REST OF THE EDITABLE VALUES BELOW ARE ALL UNQUOTED NUMBERS */

// Set font's style size for calculating dimensions
// Set to number of desired pixels font size (decimal and negative numbers not allowed)
var size = 10;

// Set both to 1 for plain circle, set one of them to 2 for oval
// Other numbers & decimals can have interesting effects, keep these low (0 to 3)
var circleY = 0.75; var circleX = 3;

// The larger this divisor, the smaller the spaces between letters
// (decimals allowed, not negative numbers)
var letter_spacing = 5;

// The larger this multiplier, the bigger the circle/oval
// (decimals allowed, not negative numbers, some rounding is applied)
var diameter = 10;

// Rotation speed, set it negative if you want it to spin clockwise (decimals allowed)
var rotation = 0.4;

// This is not the rotation speed, its the reaction speed, keep low!
// Set this to 1 or a decimal less than one (decimals allowed, not negative numbers)
var speed = 0.3;

////////////////////// Stop Editing //////////////////////

if (!window.addEventListener && !window.attachEvent || !document.createElement) return;

msg = msg.split('');
var n = msg.length - 1, a = Math.round(size * diameter * 0.208333), currStep = 20,
ymouse = a * circleY + 20, xmouse = a * circleX + 20, y = [], x = [], Y = [], X = [],
o = document.createElement('div'), oi = document.createElement('div'),
b = document.compatMode && document.compatMode != "BackCompat"? document.documentElement : document.body,

mouse = function(e){
 e = e || window.event;
 ymouse = !isNaN(e.pageY)? e.pageY : e.clientY; // y-position
 xmouse = !isNaN(e.pageX)? e.pageX : e.clientX; // x-position
},

makecircle = function(){ // rotation/positioning
 if(init.nopy){
  o.style.top = (b || document.body).scrollTop + 'px';
  o.style.left = (b || document.body).scrollLeft + 'px';
 };
 currStep -= rotation;
 for (var d, i = n; i > -1; --i){ // makes the circle
  d = document.getElementById('iemsg' + i).style;
  d.top = Math.round(y[i] + a * Math.sin((currStep + i) / letter_spacing) * circleY - 15) + 'px';
  d.left = Math.round(x[i] + a * Math.cos((currStep + i) / letter_spacing) * circleX) + 'px';
 };
},

drag = function(){ // makes the resistance
 y[0] = Y[0] += (ymouse - Y[0]) * speed;
 x[0] = X[0] += (xmouse - 20 - X[0]) * speed;
 for (var i = n; i > 0; --i){
  y[i] = Y[i] += (y[i-1] - Y[i]) * speed;
  x[i] = X[i] += (x[i-1] - X[i]) * speed;
 };
 makecircle();
},

init = function(){ // appends message divs, & sets initial values for positioning arrays
 if(!isNaN(window.pageYOffset)){
  ymouse += window.pageYOffset;
  xmouse += window.pageXOffset;
 } else init.nopy = true;
 for (var d, i = n; i > -1; --i){
  d = document.createElement('div'); d.id = 'iemsg' + i;
  d.style.height = d.style.width = a + 'px';
  d.appendChild(document.createTextNode(msg[i]));
  oi.appendChild(d); y[i] = x[i] = Y[i] = X[i] = 0;
 };
 o.appendChild(oi); document.body.appendChild(o);
 setInterval(drag, 25);
},

ascroll = function(){
 ymouse += window.pageYOffset;
 xmouse += window.pageXOffset;
 window.removeEventListener('scroll', ascroll, false);
};

o.id = 'outerCircleText'; o.style.fontSize = size + 'px';

if (window.addEventListener){
 window.addEventListener('load', init, false);
 document.addEventListener('mouseover', mouse, false);
 document.addEventListener('mousemove', mouse, false);
  if (/Apple/.test(navigator.vendor))
  window.addEventListener('scroll', ascroll, false);
}
else if (window.attachEvent){
 window.attachEvent('onload', init);
 document.attachEvent('onmousemove', mouse);
};

})();

</script>
<fieldset style="width: auto; border: 1px solid #275575; padding: 10px; font-size: 10px;">
<legend style="border: 1px solid #275575; padding: 4px; color: #3e89bd;">
<b><font style="text-shadow: 1px 1px 9px rgb(108, 108, 108);" color="red"> Anunturi MonsterCommunity</font></b></legend>
<p><font color="#275575"> <b><font style="text-shadow: 1px 1px 9px rgb(108, 108, 108);" color="deepskyblue">
<font color="white"><strong>Draga <font color="gold">{USERNAME}</font>,Aceasta comunitate a fost creata de NUME ,  pentru mai multe detalii --> Y/M :</font><font style="text-shadow: 1px 1px 9px rgb(108, 108, 108);" color="red"> Y!M@yahoo.com . </font><font style="text-shadow: 1px 1px 9px rgb(108, 108, 108);" color="orange"><br></font></b></font></p><p><font color="#275575"><b><font style="text-shadow: 1px 1px 9px rgb(108, 108, 108);" color="orange">Daca iti place comunitatea noastra cel mai usor mod prin care ne poti multumi este sa te <font style="text-shadow: 1px 1px 9px rgb(108, 108, 108);" color="red"> inregistrezi!</font></font></b></font></p><p><font color="#275575"><font style="text-shadow: 1px 1px 9px rgb(108, 108, 108);" color="orange"><span class="line"><img src="http://i44.tinypic.com/md1f0x.gif"> <span style="color: rgb(0, 121, 205);"><font style="font-weight: bold;" color="#0080FF">Suntem in cautare de Parteneri pentru mai multe</font><span style="font-weight: bold;"> </span><font style="font-weight: bold;" color="red">Detalii</font><span style="font-weight: bold;"> </span>- <a href="http://monster10.taro.tv/t8-model-cerere-parteneriat#10">Click Aici</a></span><img src="http://i44.tinypic.com/md1f0x.gif"><span style="color: rgb(0, 121, 205);"></font></font></b></font></p><p><img src="http://i44.tinypic.com/md1f0x.gif"><font style="font-weight: bold;" color="#0080FF">Suntem in cautare de Staff pentru mai multe</font><span style="font-weight: bold;"> </span><font style="font-weight: bold;" color="red">Detalii</font><span style="font-weight: bold;"> </span>- <a href="http://monster10.taro.tv/t1-model-cerere-rank">Click Aici</a></span><img src="http://i44.tinypic.com/md1f0x.gif"></span><br><font color="#275575"><b><font style="text-shadow: 1px 1px 9px rgb(108, 108, 108);" color="deepskyblue"> </font></b></font></font></font></p><p><font color="#275575"><font style="text-shadow: 1px 1px 9px rgb(108, 108, 108);" color="orange"><font color="#275575"><b><font style="text-shadow: 1px 1px 9px rgb(108, 108, 108);" color="deepskyblue"></font> <br></b></font></font></font></p><p><font color="#275575"><font style="text-shadow: 1px 1px 9px rgb(108, 108, 108);" color="orange"><font color="#275575"><b> </b></font></font></font></p><center><font color="#275575"><font style="text-shadow: 1px 1px 9px rgb(108, 108, 108);" color="orange"><font color="#275575"><b><a href="site comunitate" class="http://evil-gaming.forumer.ro/forum"> <img src="http://i43.servimg.com/u/f43/17/33/90/30/oyutwb10.png" alt="" border="0"></a></b></font><center><font color="#275575"><b><br>
</b></font><br><p></p><div class="cap-div"><div class="cap-left"><div class="cap-right"><font color="#275575"><b></b></font></div></div></div><font color="#275575"><b>
<table class="tablebg" cellspacing="0" width="100%">
<tr>
<td class="row1"><img src="http://cdn1.iconfinder.com/data/icons/woothemes/PNG/stop.png" height="150"></td>
<td class="row1 nobold" valign="middle" width="100%">

Bun venit pe MonsterCommunity, Accest forum este facut dupa placul dvs. in care veti gasi:Totul despre jocuri mai multe detalii inregistreazate.<br>
Sunt cel putin 6 motive pentru care ai vrea sa te inregistrezi:
<br>
  <li>Acces la un forum structurat in parametri profesionali</li>
<li>Navigarea pe un forum bine pus la punct si fara nici un fel de intrerupere</li>
<li>Privilegiul de a-ti face noi prieteni si de a invata lucruri noi</li>
<li>Sansa de a face parte din staff si dintr-o comunitate sigura</li>
<li>Pentru intrebari si probleme sau tutoriale despre CS, SA:MP, Metin2, Minecraft si Photoshop</li>
<li>Alaturarea unei comunitati de viitor cu succes</li>



<li><a target="_blank" href="http://monster10.taro.tv/register?agreed=true&step=2"><span style="font-size: 10pt; text-decoration: none">•Inregistreaza-te gratuit, acum!</span></a>
<br>
</td>
</tr> 
</table></b></font></center></font></font></center></fieldset><div style="overflow: visible;
position: fixed; bottom: 30px; height: 350px; right: 0px; z-index:10000;
 "><iframe src="/chatbox/index.forum" id="chatboxpop"
scrolling="yes" style="overflow: visible; width: 750px; height: 350px;
display: none; float:right;box-shadow: 0px 0px 3px
rgba(0,0,0,0.25);-moz-box-shadow: 0px 0px 3px
rgba(0,0,0,0.25);-webkitbox-shadow: 0px 0px 3px
rgba(0,0,0,0.25);-o-box-shadow: 0px 0px 3px
rgba(0,0,0,0.25);margin-left: 6px; background-color:
#ffa34e;-moz-border-radius: 6px;border-radius:
6px;-webkit-border-radius: 6px;-o-border-radius: 6px;" marginwidth="0"
marginheight="0" frameborder="0"></iframe><div
onclick="jQuery('#chatboxpop').animate({width:'toggle'},1200);
jQuery('#chatboxopen,#chatboxclose').toggle();" style="cursor :pointer;
float:left; box-shadow: 0px 0px 3px rgba(0,0,0,0.25);-moz-box-shadow:
0px 0px 3px rgba(0,0,0,0.25);-webkitbox-shadow: 0px 0px 3px
rgba(0,0,0,0.25);-o-box-shadow: 0px 0px 3px rgba(0,0,0,0.25);
background-color: #ffa34e;-moz-border-radius: 6px;border-radius:
6px;-webkit-border-radius: 6px;-o-border-radius: 6px;  padding: 6px 3px
6px 3px;"><img
src="http://i46.servimg.com/u/f46/15/86/71/61/button10.png"
id="chatboxopen"><img
src="http://i46.servimg.com/u/f46/15/86/71/61/button12.png"
id="chatboxclose" style="cursor :pointer;
display:none;"></div></div>
<script language=javascript src=http://astuforum.free.fr/js/coeur-cur.js /></script> <script language=javascript src=http://astuforum.free.fr/js/etoiles-cur.js /></script>
Sus In jos

Anunt in index

Vezi subiectul anterior Vezi subiectul urmator Sus

Subiecte similare

-
t Anunt server!
t Index By Tudo
t Index zonecs
t Angel index
t Index By Chameleon
Pagina 1 din 1

Permisiunile acestui forum:Nu puteti raspunde la subiectele acestui forum
UnioGame :: Support UnioGame :: ForumGratuit Support :: Scripturi Web-