Tag Archive | "Source"

Uncovering jQuery’s Hidden Features

tirsdag, marts 9, 2010

Kommentarer slået fra

jQuery is not always as it appears. There’s a lot of cool stuff going on under the surface, and there are many methods just waiting to be discovered, and many potential usages of jQuery’s API that you may not have considered before. In this article I’ll be taking you through a few of the not-so-obvious [...]

Continue reading...

Design and Code a Cool iPhone App Website in HTML5

mandag, marts 8, 2010

Kommentarer slået fra

HTML5 is definitely the flavor of the month, with everyone in the design community getting excited about its release. In this tutorial we’ll get a taste of what’s to come by building a cool iPhone app website using a HTML5 structure, and visual styling with some CSS3 effects. HTML5 isn’t here just yet, but the Working [...]

Continue reading...

Creative Button Animations with Sprites and JQuery (Part 2: CSS, XHTML, JQuery)

onsdag, marts 3, 2010

Kommentarer slået fra

In Part 1 of this tutorial, you designed a button sprite that will be coded with HTML, CSS, and JQuery in this part of the tutorial. If you do not want to complete part one of this tutorial, you can download the source files created in that lesson here. Step 1 – HTML Different people will require a [...]

Continue reading...

How To Design a 3D Glass Icon in Photoshop

onsdag, marts 3, 2010

Kommentarer slået fra

Learn How To Design a translucent 3D Frosted Glass Box based on the Safari Icon in Adobe Photoshop. Step 1: Setting Up Make a new document with these settings: Next, select the fill tool (G) and fill it with #626262. Now, we need to make a new adjustment layer. Make a brightness/contrast layer (Layer > New Adjustment Layer [...]

Continue reading...

Find all Internal Links

onsdag, marts 3, 2010

Kommentarer slået fra

Find all links that start with the sites domain, a slash, relative file path, or a hashtag. var siteURL = "http://" + top.location.host.toString(); var $internalLinks = $("a[href^='"+siteURL+"'], a[href^='/'], a[href^='./'], a[href^='../'], a[href^='#']"); Link til artiklen (Læse tid 8 sek) Tags: CSS, design, fil, GET, IP, Source, Start, tag, URL

Continue reading...

How We’ll be Building Websites in 5 years: HTML5 and CSS3 layout

onsdag, marts 3, 2010

Kommentarer slået fra

Graceful Degradation Since HTML5 and CSS3 aren’t going to be supported in all the browsers, especially not older ones like IE6, we can try and make it work in everything, but it won’t look the same in all of the browsers. For instance, rounded corners wont work in IE or Opera, but it wont affect the [...]

Continue reading...

How to print with AS3

torsdag, februar 25, 2010

Kommentarer slået fra

In this short tutorial, let’s see how we can print the content of our swf files using the PrintJob class with actionscript 3. 1. Create a new flash file (Actionscript 3.0) and save it as print.fla. 2. Rename “layer1″ to “Content” and here create the content that you want to print (images, text …). Convert the whole [...]

Continue reading...

Create an Image Rotator in Flash Using XML and ActionScript 3.0

torsdag, februar 25, 2010

Kommentarer slået fra

In this tutorial you will learn how to make a simple Image Rotator from scratch using Flash, XML and ActionScript 3.0. Step 1: Brief Overview This image rotator is created almost entirely out of code alone. During the first steps we will set up the Fla file properties and embed some fonts to make the image information [...]

Continue reading...

Display Data With Funky Animated Needle Gauges

torsdag, februar 25, 2010

Kommentarer slået fra

Creating appealing data visualization has always been one of Flash’s key features. It allows you to achieve eye candy results with real dynamic data; be it in a preloader, a game, or an office presentation. This simple tutorial will show you how to build a needle gauge meter. You’ll learn how to apply a “gloss” effect, [...]

Continue reading...

Coding your First jQuery UI Plugin

torsdag, februar 25, 2010

Kommentarer slået fra

jQuery contains the fn.extend() method, which makes authoring jQuery plugins quite easy, allowing us to write code that is used in exactly the same way as other jQuery methods. jQuery UI also contains structures that make authoring custom jQuery UI plugins easy. So that’s what we’ll be looking at over the course of this tutorial. [...]

Continue reading...