• Quelques images de la saison 4

                Quelques images de la saison 4

    Quelques jolies images de la saison 4 =)

    ogaaaa6j9ds5bagfykm98zeyxmlcir2ixta8jmug2g3j0x_twq3cv4dbdsnx-d6afglgvk1cmccncitmrgwxr64j7imam1t1ujb_i-pjz_exlftayud-e1n3ugsi.jpg

    ogaaacodietobc8hok7ewmq7sddvjuuwtxqomd-8vzqw2myxjyxd6sym0j1k3xtxuteoyjdfw59qljjhmolzhk5gb2oam1t1ukop9undk14bz3rjfxkfx4jjjlia.jpg

    ogaaaczxlx6xl5kmbknuwbsovuwwqkjkrp154duphcqkifh9a3zcf0pqssakdxvjw69txjaf6j_srpzssbqv7kuip8mam1t1uotnxu-sc6d_na8fqei7umek3vb5.jpg

    ogaaalcqcg-qeogc6vtm8ihyoiqgvl_zmhbgkg1dv__y7sqx0bdttvkeijj-tg6biafhlj3psududpdgd8_j5h7mkliam1t1ucezmiyol-yikd_wg2i8sz0w7ybx.jpg

    ogaaamh4u7jkld5qsoryhrxppsesfi6gfqm-m_ecu6api9jcludbkfbfmuljvbuwjsjmgztvvwrk7n5ns6sojuxbpgam1t1uisujbyj9lmn5ozydrdjsgzu6wjh.jpg

    ogaaabhbmjmgwoglcwpozotljm9e0lutyd_hat9qsa0y40mglc9lb-on64vy7btlffes_jjzvsoi5vpakujs0kgiykiam1t1udv0pcfl-t1le7bcib2r4nhpp-wr.jpg

    ogaaagumubseuwk8wgjs-bh7xtnb7qw7aebe7hjgnossbnh8tppwwgulb5rxjw3bcy5o8vswpbwzcfnb7znhqfxckswam1t1unyfawh6zwmz-jbpus0_y21ojlfv.jpg

    Esperont là suite ;) ogaaaj0qnuqfsvw8xwdwqlhjrpmqnmhexm7bb-tidyyw8kx4t7akxd4p-unmm7jwtipvshyyjsccu25nvswstg1sn-wam1t1ujftg4pd6pvcaua5xm9cwfxc3e_s.jpg


     

     

    <script language=JavaScript> /* This is dodo's flash title script */ /* Taken from http://regretless.com/dodo/newworld/ */ var dodosflashtitle1='*~ Musa-MagiaWinx Version ~*'; // put frame 1 text var dodosflashtitle2='*~ All About Musa . 10.0 ~*'; // put frame 2 text var dodosduration = 400; // duration high = slower animation step=0 function dodosflashtitle() { step++ if (step==3) {step=1} if (step==1) {document.title=dodosflashtitle1} if (step==2) {document.title=dodosflashtitle2} setTimeout("dodosflashtitle()", dodosduration); } dodosflashtitle() </script><script language=JavaScript1.2> var rate = 100; // Increase amount(The degree of the transmutation) //////////////////////////////////////////////////////////////////// // Main routine var obj; // The object which event occured in var act = 0; // Flag during the action var elmH = 0; // Hue var elmS = 128; // Saturation var elmV = 255; // Value var clrOrg; // A color before the change var TimerID; // Timer ID if (navigator.appName.indexOf("Microsoft",0) != -1 && parseInt(navigator.appVersion) >= 4) { Browser = true; } else { Browser = false; } if (Browser) { document.onmouseover = doRainbowAnchor; document.onmouseout = stopRainbowAnchor; } //============================================================================= // doRainbow // This function begins to change a color. //============================================================================= function doRainbow() { if (Browser && act != 1) { act = 1; obj = event.srcElement; clrOrg = obj.style.color; TimerID = setInterval("ChangeColor()",100); } } //============================================================================= // stopRainbow // This function stops to change a color. //============================================================================= function stopRainbow() { if (Browser && act != 0) { obj.style.color = clrOrg; clearInterval(TimerID); act = 0; } } //============================================================================= // doRainbowAnchor // This function begins to change a color. (of a anchor, automatically) //============================================================================= function doRainbowAnchor() { if (Browser && act != 1) { obj = event.srcElement; while (obj.tagName != 'A' && obj.tagName != 'BODY') { obj = obj.parentElement; if (obj.tagName == 'A' || obj.tagName == 'BODY') break; } if (obj.tagName == 'A' && obj.href != '') { act = 1; clrOrg = obj.style.color; TimerID = setInterval("ChangeColor()",100); } } } //============================================================================= // stopRainbowAnchor // This function stops to change a color. (of a anchor, automatically) //============================================================================= function stopRainbowAnchor() { if (Browser && act != 0) { if (obj.tagName == 'A') { obj.style.color = clrOrg; clearInterval(TimerID); act = 0; } } } //============================================================================= // Change Color // This function changes a color actually. //============================================================================= function ChangeColor() { obj.style.color = makeColor(); } //============================================================================= // makeColor // This function makes rainbow colors. //============================================================================= function makeColor() { // Don't you think Color Gamut to look like Rainbow? // HSVtoRGB if (elmS == 0) { elmR = elmV; elmG = elmV; elmB = elmV; } else { t1 = elmV; t2 = (255 - elmS) * elmV / 255; t3 = elmH % 60; t3 = (t1 - t2) * t3 / 60; if (elmH < 60) { elmR = t1; elmB = t2; elmG = t2 + t3; } else if (elmH < 120) { elmG = t1; elmB = t2; elmR = t1 - t3; } else if (elmH < 180) { elmG = t1; elmR = t2; elmB = t2 + t3; } else if (elmH < 240) { elmB = t1; elmR = t2; elmG = t1 - t3; } else if (elmH < 300) { elmB = t1; elmG = t2; elmR = t2 + t3; } else if (elmH < 360) { elmR = t1; elmG = t2; elmB = t1 - t3; } else { elmR = 0; elmG = 0; elmB = 0; } } elmR = Math.floor(elmR); elmG = Math.floor(elmG); elmB = Math.floor(elmB); clrRGB = '#' + elmR.toString(16) + elmG.toString(16) + elmB.toString(16); elmH = elmH + rate; if (elmH >= 360) elmH = 0; return clrRGB; } </script><script language=JavaScript1.2> var snowsrc="http://www.planetblogs.blogger.com.br/bullet2.gif" var no = 9; var ns4up = (document.layers) ? 1 : 0; var ie4up = (document.all) ? 1 : 0; var dx, xp, yp; var am, stx, sty; var i, doc_width = 800, doc_height = 600; if (ns4up) { doc_width = self.innerWidth; doc_height = self.innerHeight; } 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()/10; sty[i] = 0.7 + Math.random(); if (ns4up) { if (i == 0) { document.write("<layer name=\"dot"+ i +"\" left=\"15\" top=\"15\" visibility=\"show\"></layer>"); } else { document.write("<layer name=\"dot"+ i +"\" left=\"15\" top=\"15\" visibility=\"show\"></layer>"); } } else if (ie4up) { if (i == 0) { document.write("
    "); } else { document.write("
    "); } } } function snowNS() { for (i = 0; i < no; ++ i) { // iterate for every dot yp[i] += sty[i]; if (yp[i] > doc_height-50) { xp[i] = Math.random()*(doc_width-am[i]-30); yp[i] = 0; 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]; document.layers["dot"+i].left = xp[i] + am[i]*Math.sin(dx[i]); } setTimeout("snowNS()", 10); } 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]-30); yp[i] = 0; stx[i] = 0.02 + Math.random()/10; 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()", 10); } if (ns4up) { snowNS(); } else if (ie4up) { snowIE(); } </script>

  • Commentaires

    Aucun commentaire pour le moment

    Suivre le flux RSS des commentaires


    Ajouter un commentaire

    Nom / Pseudo :

    E-mail (facultatif) :

    Site Web (facultatif) :

    Commentaire :