spacer

Webref WebRef   Sitemap · Experts · Tools · Services · Newsletters · About i.com

Developer News
Metasploit 3.2 Offers More 'Evil Deeds'
'Thank You Apple. Seriously.'
The Buzz: BlackBerry App Store Seen Next
JavaScript Tip of the Week for September 2, 1996: The Image Object

The first objects in JavaScript were forms, frames, and windows. But with the release of Netscape 3.0, the image joins this group of objects. This tip will teach you how to use the image object efficiently and effectively.

In the image object there are two important properties that you should know: name and src. Name is simply the name of an image, that is how you refer to it when working with it. The other propery, src or source, determines what image file should be in the image object. One of the most basic things you can do with an image object is called preloading. To preload an image, before it needs to be displayed, use this syntax:
    imageName = new Image(height, width);
    imageName.src = "image_filename";
Preloading images allows for instant gratification when combined with either animation or with onMouseOver. Take a look at the famous golden JavaScript cup below. When you move the mouse over it a preloaded GIF animation takes it's place. Both of the images were preloaded, so when the mouse moves over, they appear instantly. The code for this is very simple, first the images are preloaded, and the name golden_cup is given to the initial graphic:
    reappear = new Image(100, 75);
    reappear.src = "golden_cup.gif";
    fade = new Image(100, 75);
    fade.src = "fade.gif";
Then onMouseOver and onMouseOut are used in the HREF tag to toggle the images:
    onMouseOver = "golden_cup.src = fade.src";
    onMouseOut = "golden_cup.src = reappear.src";
As you can see, the src of the preloaded image can be set to the src of the main image. In this way the image is displayed instantly. The image object also has its own set of handlers; onAbort, onError, and onLoad. The events that trigger these even handlers were all explained in Meet the New Event Handlers. The syntax for these even handlers looks like this:
    imageName.onabort = function 
    imageName.onerror = function 
    imageName.onload = function 
These event handlers can also be placed inside the image tag.

Now how about making it more interesting? Well then let's go on to JavaScript animation. If you've already seen the animation tip, don't bother going. But if you haven't then take a look.

Source



JupiterOnlineMedia

internet.comearthweb.comDevx.commediabistro.comGraphics.com

Search:

Jupitermedia Corporation has two divisions: Jupiterimages and JupiterOnlineMedia

Jupitermedia Corporate Info


Legal Notices, Licensing, Reprints, & Permissions, Privacy Policy.

Advertise | Newsletters | Tech Jobs | Shopping | E-mail Offers

Solutions
Whitepapers and eBooks
IBM Whitepaper: Innovative Collaboration to Advance Your Business
Internet.com eBook: Real Life Rails
Avaya Article: Call Control XML - Powerful, Standards-Based Call Control
Tripwire Whitepaper: Seven Practical Steps to Mitigate Virtualization Security Risks
Internet.com eBook: The Pros and Cons of Outsourcing
Go Parallel Article: Scalable Parallelism with Intel(R) Threading Building Blocks
Internet.com eBook: Best Practices for Developing a Web Site
IBM CXO Whitepaper: The 2008 Global CEO Study "The Enterprise of the Future"
Avaya Article: Call Control XML in Action - A CCXML Auto Attendant
Go Parallel Article: James Reinders on the Intel Parallel Studio Beta Program
IBM CXO Whitepaper: Unlocking the DNA of the Adaptable Workforce--The Global Human Capital Study 2008
Adobe Acrobat Connect Pro: Web Conferencing and eLearning Whitepapers
Go Parallel Article: Getting Started with TBB on Windows
HP eBook: Storage Networking , Part 1
MORE WHITEPAPERS, EBOOKS, AND ARTICLES
Webcasts
Go Parallel Video: Intel(R) Threading Building Blocks: A New Method for Threading in C++
HP Video: Is Your Data Center Ready for a Real World Disaster?
Microsoft Partner Portal Video: Microsoft Gold Certified Partners Build Successful Practices
HP On Demand Webcast: Virtualization in Action
Go Parallel Video: Performance and Threading Tools for Game Developers
Rackspace Hosting Center: Customer Videos
Intel vPro Developer Virtual Bootcamp
HP Disaster-Proof Solutions eSeminar
HP On Demand Webcast: Discover the Benefits of Virtualization
MORE WEBCASTS, PODCASTS, AND VIDEOS
Downloads and eKits
Microsoft Download: Silverlight 2 Software Development Kit Beta 2
30-Day Trial: SPAMfighter Exchange Module
Red Gate Download: SQL Toolbelt
Iron Speed Designer Application Generator
Microsoft Download: Silverlight 2 Beta 2 Runtime
MORE DOWNLOADS, EKITS, AND FREE TRIALS
Tutorials and Demos
IBM IT Innovation Article: Green Servers Provide a Competitive Advantage
Microsoft Article: Expression Web 2 for PHP Developers--Simplify Your PHP Applications
Featured Algorithm: Intel Threading Building Blocks - parallel_reduce
MORE TUTORIALS, DEMOS AND STEP-BY-STEP GUIDES
webref The latest from WebReference.com Browse >
Popular JavaScript Framework Libraries: An Overview · Controllers: Programming Application Logic - Part 2 · How to Use JavaScript to Validate Form Data
Sitemap · Experts · Tools · Services · Email a Colleague · Contact FREE Newsletters 
 The latest from internet.com
Choosing the Right Online Backup Provider · Mother Avaya Nurtures Her Technology Partners · Software as a Service a Winning Model for Hotspot Provider