background preloader

Webdesign, css, graphisme, scripts...

Webdesign, css, graphisme, scripts...

http://www.webdesign2803.fr/

Related:  HTML/CSS/JS

JavaScript Garden Although JavaScript deals fine with the syntax of two matching curly braces for blocks, it does not support block scope; hence, all that is left in the language is function scope. function test() { // a scope for(var i = 0; i < 10; i++) { // not a scope // count } console.log(i); // 10} There are also no distinct namespaces in JavaScript, which means that everything gets defined in one globally shared namespace. Each time a variable is referenced, JavaScript will traverse upwards through all the scopes until it finds it. In the case that it reaches the global scope and still has not found the requested name, it will raise a ReferenceError. The Bane of Global Variables archann.tumblr Only One Website // Facebook // Instagram // Shop Mithya Functional Programming in Javascript This is an interactive learning course with exercises you fill out right in the browser. If you just want to browse the content click the button below: This is a series of interactive exercises for learning Microsoft's Reactive Extensions (Rx) Library for Javascript.

Wonderful Machine Photography Blog Wonderful Machine More Are you a photographer? FOLLOW BY EMAILBlog Jeffrey Totaro // Architect MagazineOct 3, 2017Tear Sheets Check out today's featured tear sheet! Save The Date: Meet Erika & Craig at ASMP West! creating your first website, basic HTML for beginners Path // → MY FIRST SITE We’ll begin very easily here, because I’m assuming you are just starting out. No one likes to look back on My First Site, but hopefully your experience can be made slightly less traumatic with a push in the right direction. You did Start Here first, right? John Nack on Adobe February 07, 2014 I’ve Got My Ticket For the Long Way ‘Round… From discovering Adobe my first week in college & sending away $10 for an ATM Light floppy disk, to teaching Photoshop in college & starting a Web design career, to joining the company itself in 2000, I’ve had a very special relationship with this place.

color gradient generator At first, I was using the hexagonal color-cube in WORD to create gradients, but that didn't have the resolution nor flexibility that I wanted. This PHP app takes 3 input parameters: beginning color, ending color, and the number of steps requested and interpolates between them. Step 0 is always the beginning color, and step n is the ending color. theory of operation The beginning and ending colors are captured from the GET request to the server. After range checking of the colors and the number of steps requested, a loop is run and the RGB components are linearly interpolated according to the current step of the loop.

Related: