Archive | Engelske guides RSS feed for this section

Awesome CSS+JS form styling

10. marts 2010

Kommentarer slået fra

Sexy CSS+JS Form I was working on our new open source project that i think you will like and I was working on the registration page. This is what I got in the end and i will walk you trough the process with me. This new tutorial is about styling the forms of your website, I [...]

Continue reading...

Making a Mosaic Slideshow With jQuery and CSS

10. marts 2010

Kommentarer slået fra

When designing a product page, it is often necessary to present a number of images in a succession, also known as a slideshow. With the raise of the jQuery library and its numerous plugins, there is an abundance of ready-made solutions which address this problem. However, to make a lasting impression to your visitors, you [...]

Continue reading...

Uncovering jQuery’s Hidden Features

9. marts 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...

Creative Button Animations with Sprites and JQuery (Part 1: Photoshop)

3. marts 2010

Kommentarer slået fra

This tutorial will show you how to build creative hover animations for buttons using sprites. The particular effect illustrated in this tutorial is inspired by the “Download” buttons on Tutorial9.net. Part 1 of this tutorial explains the design process in Photoshop. In Part 2 we will convert it to XHTML + CSS and as a [...]

Continue reading...

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

3. marts 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...

Quick Tip: Learning jQuery 1.4’s $.proxy

3. marts 2010

Kommentarer slået fra

One of my favorite new features in jQuery 1.4 is the new $.proxy method. It allows us force a particular context when calling a method. In JavaScript, there can be times when it’s difficult to hold on to the this keyword. For example, when it’s bound to some event handler, this now refers to the [...]

Continue reading...

The jQuery Hover Method

25. februar 2010

Kommentarer slået fra

When building a navigation menu, or any other jQuery script, it is often necessary to have a robust method with which to define a mouse over and mouse out state. This is where the hover() method comes along. Here is how it is used: $('.selectorClass').hover( function(){ $(this).stop().fadeTo('slow',0.4); }, function(){ $(this).stop().fadeTo('slow',1); }); This assigns the first function to be executed when the mouse moves [...]

Continue reading...

Coding your First jQuery UI Plugin

25. februar 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...

Make your MooTools Code Shorter, Faster, and Stronger

18. februar 2010

Kommentarer slået fra

MooTools is one of the most flexible, modular, and well written JavaScript frameworks available. So many people use it but many of them don’t optimize their code. This post will provide you with fifteen simple tips for making your MooTools code shorter, faster, and stronger.   1. Create Your Own MooTools Build or Pull From Google AJAX [...]

Continue reading...

How to Build an Unobtrusive Login System in Rails

16. februar 2010

Kommentarer slået fra

An unobtrusive login system is one that gets out of the user’s way. It will make your application nicer and more polished. This article will guide you through the process of setting up user logins, then ajaxifying the process by moving the form into a modal box that communicates with the server. Additionally, this article [...]

Continue reading...