Vileynoth

----------



Herzlich Willkommen bei den Night Dreamers.Wir hoffen euch gefällt das Forum und sind immer froh über neue Mitglieder.

----------



RPG NEW´s



----------



Neue Mitglieder die auch aktiv mitschreiben können. Aber auch spass an schreiben haben ^^



/* * Schnee-Script * @author Oliver Schlöbe <scripts@schloebe.de> * @example http://www.schloebe.de/scriptdemos/schloebe_snow/snowtest.html * @link http://www.schloebe.de/scripts/schnee-script/ * @since 111112 */ var schloebesnow = { no: 15, // Anzahl der Schneeflocken speed: 20, // "Schnei-Geschwindigkeit"; je kleiner die Zahl, um so schneller fallen die Flocken snowflake: "http://www.schloebe.de/wp-content/themes/schloebe_de/images/snow/snow.gif", // Bild der Schneeflocke, beliebig /*********************************/ /** Ab hier nichts mehr ändern! **/ /*********************************/ ns4up: (navigator.appName=="Netscape" && navigator.appVersion.charAt(0)=="4") ? 1 : 0, // Browser Tester ie4up: (document.all) ? 1 : 0, ns6up: (document.getElementById&&!document.all) ? 1 : 0, i: 0, dx: new Array(), xp: new Array(), yp: new Array(), am: new Array(), stx: new Array(), sty: new Array(), doc_width: 800, doc_height: 800, let_it_snow: function() { if( this.ns4up || this.ns6up ) { // Bildschirm-Auflösung holen, Netscape-Funktion this.doc_width = self.innerWidth; this.doc_height = self.innerHeight; } else if( this.ie4up ) { // Bildschirm-Auflösung holen, Internet Explorer-Funktion this.doc_width = document.body.clientWidth; this.doc_height = document.body.clientHeight; } this.doc_height = (this.doc_height==0) ? document.documentElement.clientHeight : this.doc_height; for( this.i = 0; this.i < this.no; ++ this.i ) { this.dx[this.i] = 0; // Koordinaten-Variable setzen this.xp[this.i] = Math.random()*(this.doc_width-50); // Position-Variable setzen this.yp[this.i] = Math.random()*this.doc_height; this.am[this.i] = Math.random()*20; // Amplituden-Variable setzten this.stx[this.i] = 0.02 + Math.random()/10; // Variable für Schrittweite setzen this.sty[this.i] = 0.7 + Math.random(); // Variable für Schrittweite setzen if( this.ns4up ) { if (this.i == 0) { document.write("<layer name=\"dot"+ this.i +"\" left=\"15\" "); document.write("top=\"15\" visibility=\"show\"><img src=\""); document.write(this.snowflake + "\" border=\"0\"></layer>"); } else { document.write("<layer name=\"dot"+ this.i +"\" left=\"15\" "); document.write("top=\"15\" visibility=\"show\"><img src=\""); document.write(this.snowflake + "\" border=\"0\"></layer>"); } } else if( this.ie4up || this.ns6up ) { if (this.i == 0) { document.write("<div id=\"dot"+ this.i +"\" style=\"position: "); document.write("absolute; z-index: "+ this.i +"; visibility: "); document.write("visible; top: 15px; left: 15px;\"><img src=\""); document.write(this.snowflake + "\" border=\"0\"></div>"); } else { document.write("<div id=\"dot"+ this.i +"\" style=\"position: "); document.write("absolute; z-index: "+ this.i +"; visibility: "); document.write("visible; top: 15px; left: 15px;\"><img src=\""); document.write(this.snowflake + "\" border=\"0\"></div>"); } } } if( this.ns4up ) { this.snowNS(); } else if( this.ie4up ) { this.snowIE(); }else if( this.ns6up ) { this.snowNS6(); } }, /* * Haupt-Animations-Funktion für Netscape */ snowNS: function() { for( this.i = 0; this.i < this.no; ++ this.i ) { this.yp[this.i] += this.sty[this.i]; if( this.yp[this.i] > this.doc_height-50 ) { this.xp[this.i] = Math.random()*(this.doc_width-this.am[this.i]-30); this.yp[this.i] = 0; this.stx[this.i] = 0.02 + Math.random()/10; this.sty[this.i] = 0.7 + Math.random(); this.doc_width = self.innerWidth; this.doc_height = self.innerHeight; this.doc_height = (this.doc_height==0) ? document.documentElement.clientHeight : this.doc_height; } this.dx[this.i] += this.stx[this.i]; document.layers["dot"+this.i].top = this.yp[this.i]; document.layers["dot"+this.i].left = this.xp[this.i] + this.am[this.i]*Math.sin(this.dx[this.i]); } setTimeout("schloebesnow.snowNS()", this.speed); }, /* * Haupt-Animations-Funktion für Internet Explorer */ snowIE: function() { for( this.i = 0; this.i < this.no; ++ this.i ) { this.yp[this.i] += this.sty[this.i]; if( this.yp[this.i] > this.doc_height-50 ) { this.xp[this.i] = Math.random()*(this.doc_width-this.am[this.i]-30); this.yp[this.i] = 0; this.stx[this.i] = 0.02 + Math.random()/10; this.sty[this.i] = 0.7 + Math.random(); this.doc_width = document.body.clientWidth; this.doc_height = document.body.clientHeight; this.doc_height = (this.doc_height==0) ? document.documentElement.clientHeight : this.doc_height; } this.dx[this.i] += this.stx[this.i]; document.all["dot"+this.i].style.pixelTop = this.yp[this.i]; document.all["dot"+this.i].style.pixelLeft = this.xp[this.i] + this.am[this.i]*Math.sin(this.dx[this.i]); } setTimeout("schloebesnow.snowIE()", this.speed); }, /* * Haupt-Animations-Funktion für Netscape6 und Mozilla */ snowNS6: function() { for( this.i = 0; this.i < this.no; ++ this.i ) { this.yp[this.i] += this.sty[this.i]; if( this.yp[this.i] > this.doc_height-50 ) { this.xp[this.i] = Math.random()*(this.doc_width-this.am[this.i]-30); this.yp[this.i] = 0; this.stx[this.i] = 0.02 + Math.random()/10; this.sty[this.i] = 0.7 + Math.random(); this.doc_width = self.innerWidth; this.doc_height = self.innerHeight; this.doc_height = (this.doc_height==0) ? document.documentElement.clientHeight : this.doc_height; } this.dx[this.i] += this.stx[this.i]; document.getElementById("dot"+this.i).style.top = this.yp[this.i]+"px"; document.getElementById("dot"+this.i).style.left = this.xp[this.i] + this.am[this.i]*Math.sin(this.dx[this.i])+"px"; } setTimeout("schloebesnow.snowNS6()", this.speed); } } schloebesnow.let_it_snow();
#1

nike sock dart

in Pfotenbuch 05.01.2019 02:52
von Joyce Beard | 3 Beiträge

A couple of weeks ago we got our first glimpse at nike sock dart the latest collaboration between Virgil Abloh and Nike with the OFF-WHITE x Nike Air Presto. Today we get our first full look at the shoe which gives the silhouette a brand new look.Previewed by A$AP Nast, the OFF-WHITE x Nike Air Presto features a black mesh build on the upper with large Swoosh logos placed on the side panels, also in black. Other details include a milky white translucent TPU cage on the heel/ankle, white laces, white detailing on the tongue, an orange tag on the side panels, AIR branding on the ankle, and an off-white colored sole unit.Get a good first look at the shoe above and stay tuned to Kicks On Fire for a release date.

The Nike Classic Cortez 45th anniversary celebration continues. Next up is the Nike Classic Cortez Ying Yang Pack. This two-pair pack keeps aesthetics at a minimum as Black/White and White/Black offerings create the theme of the pack. Both pairs comes constructed out of leather, where the primary color takes care of most of the base while the contrasting color is used on the Swoosh, nike air presto men heel tab, tongue tag and the stripe on the midsole. As versatile as it gets, you can t go wrong with picking up either colorway from the pack. Retailing for $85, find these today at select Nike stockists.

Nike will be kicking off the month of August with two new colorways of the Nike Air VaporMax that make up the Explorer Pack. First we nike flyknit men have the Explorer Light colorway for the women which comes done in a White Flyknit upper with an eye-catching bronze Swoosh on the side panels that is inspired by deep-sea diving helmets that opened up underwater frontiers. Down below we have a full-length Hydrogen Blue Air Max unit. This white VaporMax is a reference to space suits.The women will be able to pick up a pair beginning on August 3rd for $190.

Just a heads up for anyone trying to pick up a pair of the Nike Kyrie 3 Dark Obsidian, they drop tomorrow!The Nike Kyrie 3 Dark Obsidian comes with Obsidian all throughout the upper. Metallic Gold hits the Swoosh logos on the side panels as well as the Kyrie branding on the tongue. A marbled White midsole and mens nike basketball shoes a Gum rubber outsole complete the clean look on this pair of Kyrie 3s. Said to be inspired by the alternate jerseys of the Cavs, look for these to release tomorrow, July 21st at select retailers for $120. You adding these to your collection?

As most of you know by now, a whole lot of Air Max 97 goodness is on its way. Today we take a look at the official images of one of those upcoming releases, the Nike Air Max 97 Ultra 17 Silver Bullet.This version of the Nike Air Max 97 Ultra 17 is given the classic Silver Bullet finish. The Ultra version of the model is a lighter version of the AM 97 since it comes with new features such as the Ultra sole, the single-layer upper and the new Air-Sole PSI levels to provide a more comfortable ride for daily wear. Most of the shoe comes in Silver, while Red and White accents can be found on the branding and midsole. If you missed out on the AM 97 Silver Bullet, this modern version is definitely not a bad consolation prize (aside from being more comfy as well).Look for the Nike Air Max 97 Ultra 17 Silver Bullet to release first on August 5th via Nike SNKRS, followed by a global release on August 17th. Retail price is set at $170.

The shoe launches early August.Nike Hyperdunk Low 2017  Manila  August 2017Surrounded by a towering concrete parking structure on all sides, Manila s Tenement Court Taguig stands as one of the basketball world s most striking environments. It s cemented in community infrastructure and serves as an inescapable reminder of homecourt advantage and the nike air women heart and soul of the city s basketball culture.This court s iconic aesthic is represetted by an allover gray and concrete-style midsole of the of the Nike Hyperdunk Low 2017 Manila. The shoe releases in August.Nike Hyperdunk Low 2017  Beijing  August 1Beijing is home to nearly 20 million people. And though its rapid basketball community isn t blessed with an abundance of courts, there s no shortage of stiff competition in places like Dongdan. With no room for mistakes in play, the city s game requires players to go from rough to polished to stay on court.

nach oben springen

Hier gehts zur Topliste Sie heulen nach dir!
Besucher
0 Mitglieder und 32 Gäste sind Online

Wir begrüßen unser neuestes Mitglied: bill74
Forum Statistiken
Das Forum hat 949 Themen und 1737 Beiträge.

Heute waren 0 Mitglieder Online:


Xobor Einfach ein eigenes Xobor Forum erstellen