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
  • Nike Air Max Off WhiteDatum04.12.2018 04:09
    Thema von Edgar Strong im Forum Wölfe

    As a company, Nike Air Max Off White Tishman is a combination of real estate owners, developers, operators and investment management companies. Nike has signed a long-term lease agreement with U.S. Tishman company on this project. Tishman plans to build Nike Greater China headquarters in an area of more than 587,227 square feet (54,575 square meters). After the construction completed, the headquarters will include three office building and a five layer of multi-purpose conference center.

    To tell the truth, these shoes are the lightest ones I have got.Now, to satisfy these technology fans, I'd like to recommend you free Nike Shox shoes, because I myself like these shoes very much.The famous Nike Shox shoes are well-known among lots of people. And Nike Air Max Vapor almost everybody show love to them. It is acknowledged that Nike shoes are high-qualified and their designs are unique. People show great love to Nike Shox r3 shoes because these shoes are never out of style.

    To satisfy Nike Huarache Sale needs of all players engaging in different sports, say, wrestling, volleyball, cycling, softball, football, baseball, skateboarding, badminton, golf, tennis, combat sports, basketball, auto racing, etc, Nike Men Shoes are endowed with kinds of styles and designs.Nike Men Shoes are endowed with kinds of color ways and styles and this makes them rather fashionable. All kinds of people including athletes and common ones prefer to do sports by wearing Nike Men Shoes.

    "Blue Ribbon Sports" company-Nike's predecessor was Nike Sb Blazer established in 1963 by Bill Bowerman and Phil Knight, two alumnus of University of Oregon. Nike's history was started from 1972 since they changed its name into Nike.In 1962, Phil Knight, business school graduate, overhear the "Oregon Journal" staff, were being debated in Japan Nikon cameras which will replace the expensive German-made Leicas cameras in one day. Phil Knight believes that e new market could be opened by the low-cost production of Japanese manufacturers.

    Thus, they can use their shoes to compete with the European footwear manufacturers, famous as Adidas and Puma. In the summer of 1963 after graduation, Knight went to Japan in order to meet with Onitsuka-manager of the Onitsuka Tiger sports shoes company. When he saw these cheap and portable, and with comparable quality European brands of sports shoes, Nike Air 2017 Knight immediately be instigated, he brought some samples back to his hometown, and show it to his sports coach Bill Bauer Man.

    The name "Nike" came from the ancient Greek mythology became the company's name. A local female student Caroline Davidson design a fat GOGO symbol as the landmark of Nike. The "Swoosh" (means "wind flying past") became the world famous symbol to the great success of Nike.Nike's business has spread all over the world on about six continents. With a total number of 22,000 employees, if shippers, retailers, and other personnel service included, 1 million people was reached.

  • NIKE TRAINERSDatum04.12.2018 04:05
    Thema von Edgar Strong im Forum Anfrage

    Nike+ products is a NIKE TRAINERS pressure sensor in Nike shoes inside, which can take note player's every training data, and wireless transmission to iPod or iPhone.After Nike+ is prepared, athletes not only can listen music but also can take note many kinds of running data, such as speed, distance, time and calorie, then can reserve data records and upload to Nike+ online community. You can build yourself running records, can establish train plan and also can communicate and contest with runner from all over the world.

    This project will be a long-term growth strategy for the Nike BLACK NIKE TRAINERS WOMENS Company. After the project finished, its trading business will be raised. Before this project, Tishman Real Estate Company has its business in Tianjin and Chengdu and has made a few achievements. WHITE NIKE TRAINERS This new project is a strategic investment which has astounded the people. The new headquarters can gather-together all its employees in Shanghai and its group of brands.

    At the same time, the company's office facilities and operation capacity could be upgraded and extended. Nike's annual revenue is over 2 million dollars for the first time in the Greater China area in June, 2011. Released NIKE TRAINERS MENS in December 20th 2012 in the second quarter fiscal performance report, the Nike Greater China's regional revenue growth rate is 35%. At the very beginning of his construction, its value and importance have show its meaning.

    Tishman Real Estate Company has started the "Shangpu-the world guide" project in June, 2011. The first sale phase of residential area will start in October, 2012. "Shangpu-the world guide" project with an area of 9.7 million square feet is a green community equipped with a complete service facilities. After the project completed, it will NIKE TRAINERS WOMENS include class A office park, class A commercial office building, SOHO living and working area, hotel, hotel residence, retail stores and places for cultural activities.

    At that time, seeing their performance, we may feel deeply impressed and astonished by their excellent performance. Besides, their Nike shoes also win much attention from us. Some sports routines footwear, say, Nike Air Yeezy Sneakers and Nike Zoom Kobe shoes, have been introduced by Nike Company, and these shoes are especially designed for several very famous basketball stars, that is, the former ones are made for Air Yeezy, and the latter, Kobe Bryant.

  • Nike TheaDatum04.12.2018 04:00
    Thema von Edgar Strong im Forum Bewerbung

    There, you can get Nike Thea various authentic Nike shoes, say, Nike Air Jordan shoes, Nike Dunks, Nike air Max, Nike air make only one, Nike Shox, Nike Kobe Trainers and Nike Lebron shoes.Have you been attracted by Nike Air Max 2009 shoes? You can get high-qualified Nike shoes at low price from fr-Nike.com, Nikelink.com or Nikeitaly.com.Nike air max 2010 Shoes are acclaimed as "Heartbeat shoes". They can show great breathability which is indispensables for runners.

    At that time, seeing their performance, we may feel deeply impressed and astonished by their excellent performance. Besides, their Nike shoes also win much attention from us. Some sports routines footwear, say, Nike Air Yeezy Sneakers and Nike Zoom Kobe shoes, have been Nike Training introduced by Nike Company, and these shoes are especially designed for several very famous basketball stars, that is, the former ones are made for Air Yeezy, and the latter, Kobe Bryant.

    In the market of sports shoes, German ones Nike Cross Training Shoes can be the master. Yet Nike dunks still offer more choices for customers. Nike dunks were released three years ago and now they have been designed in more than sixty-five color ways and styles. When it comes to our services, Nike dunks get 100% customer satisfaction. No other skateboarding shoes can do this.Many different Nike shoes are available on the website of www.Nikeshoesfan.com.

    Nevertheless, whenever it is, Nike Air Max plays vital rule among Nike shoes, for after Nike Flyknit Running Shoes improvements during a long period, Nike Air Max shoes are rather popular among the young people, especially basketball lovers.Air cushion can be used to improve people's ability of jumping and increase their speed. Then because of this, NBA players prefer to wear Nike Kobe and Nike James shoes. the professional Nike Air Max shoes can not satisfy the high demands.

    Then Nike Company makes some transformation on Nike Air Max shoes and the inspiration is mainly derived from the hip hop. In addition, owing to the greater popularity of internet among young people, Nike Air Max starts to embrace a new phrase. Websites and online shops appearance, and they begin to sell Nike Air Max shoes. Owing to the stylish appearance, Nike Air Max are also called "hip hop" shoes.Nevertheless, customers would Nike Shoe Outlet not be satisfied only by change of appearance of these shoes.

    Nike Air Max shoes try to challenge human limits in doing exercise by use of this special sole.Nike Company has continued introducing new types of this series after its first design in 1987. The advantage of all Nike Air Max is the large air cushioning unit set in the heels and this unit can be seen from sides of the midsoles of most shoes.People may assume that the Air Max 360 marks the end of Nike Air Max. But the fact is that Nike Company never stops its steps.

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