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();

Foren Suche

Suchoptionen anzeigen
  • adidas superstarDatum16.07.2019 08:10
    Thema von Maxine Kit im Forum Anfrage

    ÿþThis new iteration of the popular lifestyle runner from adidas is adidas superstar highlighted by the new Primeknit construction on the upper that features thick ribs wrapping the forefoot area and a new floating lacing system. This colorway seen above comes dominated by Core Black and Grey Four on the upper with Solar Pink detailing for contrast and a punch of color. Finishing details include a full-length white Boost midsole, black EVA inserts, and a translucent black rubber outsole. Shop adidas NMD R1 Primeknit STLT Solar Pink

    Finishing details consists of large red EVA inserts on the inner lateral section, a white Boost midsole and translucent outsole.Look for the adidas NMD R2 CNY at select adidas stores and adidas cloudfoam online sometime early next year. Click and bookmark our Air Jordan 12 Dark Grey hub page now for the shoe s latest release info and up-to-the-minute updates and images. Always keep it locked to KicksOnFire for the latest adidas tubular in sneaker news and release dates .

    A full-length Boost midsole cushions and energizes every step along with a rubber outsole for traction Shop adidas NMD R2 Core BlackÿþThe adidas NMD R2 features a circular knit and synthetic nubuck build with a premium leather heel. A full-length Boost midsole cushions and energizes every step along with a rubber outsole for traction Shop adidas NMD R2 Footwear WhiteA women s adidas NMD R2  Japan Pack is coming adidas stan smith soon and featured from the set is this st major color scheme.

    The shoe is basically designed with a more refined Primeknit upper with a sock-like collar, suede heel counter and welded Three Stripe branding on the sides. Contrasting white Boost midsoles, EVA plug insert at the heel, TPU stabilizers in the arch and an NMD sole unit completes the design altogether. Shop adidas NMD Racer Ash GreyTo ring in the new year, the adidas NMD Racer is a brand new silhouette from the brand that blends pure adidas heritage with advanced.

    ÿþThis new adidas NMD Racer Primeknit is an updated iteration of the popular NMD silhouette. The shoe is basically designed with a more refined Primeknit upper with a sock-like collar, suede heel counter and welded Three Stripe branding adidas women on the sides. Contrasting white Boost midsoles, EVA plug insert at the heel, TPU stabilizers in the arch and an NMD sole unit completes the design altogether. Shop adidas NMD Racer Vivid Pink

    The D Lillard 2 is constructed with a TECHFIT booty, forefoot webbing and heel counter to advance Damian s unmatched athleticism and attacking mentality on the court. BOUNCE cushioning in the midsole delivers lightweight comfort, while an internal torsion bar adds midfoot flexibility. The debut Rip City (Home) colorway features a textile cream upper with black and red accents and a gum outsole and gum outsole and will release on December 26th exclusively via adidas.

  • mens nikeDatum16.07.2019 08:05
    Thema von Maxine Kit im Forum Pfotenbuch

    ÿþThe Air mens nike Jordan 1 Shattered Backboard, which was inspired by the jersey that Michael Jordan wore when he shattered the backboard during a Nike exhibition game in Italy during 1985, is set to receive a reverse or alternate variation.Update: (9/29) Official images from Nike are unveiled. Adult (Men s) sizing  8-12, 13, 14  will be only available.Just to recap, the silhouette commemorates one of Michael Jordan s memorable highlights, in which he shattered the backboard with a dunk.

    The attention to detail and quality work put into this Air Jordan 1  UNKLE really makes this one special. If you like Justwin Custom s newest creation, check him out on IG for more of his work!The Air Jordan mens nike air max 1 WMNS High Zip Mystic Green sports a white textured and smooth leather upper. The sneaker s highlight is its zipper closure along the tongue, while pops of light pink and dark green are found on the ankle area, heel and nike 2017 toe box.

    The sneaker is now detailed with shearling lining around the collar, while the upper sports a textile mesh and nubuck leather accents to withstand the elements. Covered in Olive Flak/Black/Volt-Hyper Royal, the sneaker is completed with details like the wings logo seen on the ankle, Nike Air tab logos on the tongue, and a cream/sail rubber sole.The Air Jordan 1 WMNS Rebel Top 3 is a new style of the classic OG sneaker and it takes on the nike 2017 shoes popular color scheme for one of its first colorways this season.

    Sporting a reconstructed upper with unique lacing, zippers on the sides, and Wings logo on the heels, the sneaker is also detailed with large Nike Air logos on the sides. A mixture of white, black, varsity red and varsity royal hues completes the theme altogether.ÿþThe Air Jordan 1 WMNS Rebel Top 3 is a new iteration of the OG sneaker, and it takes on the popular color scheme for one of its first colorways this spring.

    Covered in MJ s alma mater theme with UNC-colors, the sneaker is covered in a mix of Obsidian, Blue Chill, and White all over its shiny patent leather upper. Completing the design are Nike Air tongue tags, wings logo across the ankles, followed by a white midsole and light blue rubber outsole.2019 is approaching and cheap nike shoes don t expect any shortages of the Air Jordan 1, as the Air Jordan 1 WMNS Retro High OG UNC Patent is a new iteration of the silhouette for next year.

    The style is reportedly a women s exclusive that pays homage to the 2019 NBA All-Star Weekend which is to be held in Charlotte, North Carolina the home of Michael Jordan s Charlotte Hornets. Covered in UNC colors with Obsidian, Blue Chill, and White across its patent leather upper, finishing touches include Nike Air-branded tongue tags, followed by a white midsole and Carolina blue rubber outsole to complete the theme.

  • adidas stan smithDatum16.07.2019 08:00
    Thema von Maxine Kit im Forum Bewerbung

    ÿþInspired by the pioneering spirit of running designs from the adidas stan smith mid-'80s, the NMD series celebrates a time when wearable technology was exciting and new. These shoes translate the retro-tech style for today's streets with a modern knit upper.and a Boost midsole. Shop adidas NMD R1 Core Black Solar OrangeThe adidas NMD is the latest and greatest runner coming out of the Three Stripes. Grabbing inspiration from classic adidas models, the NMD manages to blend vintage aesthetics with modern technology.

    The sneaker is made of a breathable mesh upper with matching welded TPU details while the Three Stripes on the lateral sides are colored in trace grey for a bit of contrast. A matching white Boost midsole and mens adidas trainers rubber outsole completes the clean design altogether. Shop adidas NMD R1 Footwear WhiteInspired by the pioneering spirit of running designs from the mid-'80s, the NMD series celebrates a time when wearable technology was exciting and new.

    These shoes translate adidas gazelle the retro-tech style for today's streets with a modern knit upper.and a Boost midsole. Shop adidas NMD R1 Grey Core BlackAnother adidas NMD R1 Japan will be dropping this year after the original pair debuted in 2017, and this iteration will be the third to receive the special Japanese detailing. The sneaker is covered mostly in black and made of mesh with matching synthetic overlays across its upper.

    The highlight element are its EVA plugs that include adidas shoes women Japanese text on the frontal outer side, along with a white stripe across the heel that flows onto the medial area of the Boost midsole.ÿþSporting a purple textile mesh upper with tonal Three Stripes and TPU overlays, the model is also detailed with shock red accents above the toe on across its heel. Finally, matching purple EVA plugs, a white Boost midsole and black rubber sole tops off the look.

    ÿþThe adidas NMD is the latest and greatest runner coming out of the Three Stripes. Grabbing inspiration from classic adidas models, the NMD manages to blend vintage aesthetics with modern technology. Although it has a look of its own, classic adidas models such as the Micro Pacer, Rising Star and Boston Super all influence the sneaker in some way, shape or form. adidas shoes for men The NMD will feature a micro-engineered Boost midsole, EVA midsole plugs and the beloved Primeknit upper. Shop adidas NMD R1 Night Cargo

    ÿþThis new colorway of the adidas NMD R1 comes dressed in a Purple Primeknit upper offset by the Black accents found on areas such as the laces, eyestay, heel tab, EVA inserts and heel pull tab. Below you will find your customary Boost midsole done in all-White paired up with a Black rubber outsole. Shop adidas NMD R1 Primeknit Energy InkThe adidas NMD R1 Primeknit Green Marble is a brand new iteration of the popular silhouette this summer.

Inhalte des Mitglieds Maxine Kit
Beiträge: 3
Geschlecht: männlich
Hier gehts zur Topliste Sie heulen nach dir!
Besucher
0 Mitglieder und 2 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
Datenschutz