Click here to Skip to main content
15,886,786 members
Articles / Programming Languages / Javascript
Article

Changing the opacity (transparency) of images using JavaScript

Rate me:
Please Sign up or sign in to vote.
3.47/5 (7 votes)
30 Sep 20021 min read 215.3K   19   5
See how CSS and JavaScript can be used to change the opacity of images.

Introduction

I think this technique is particularly useful and unique - using JavaScript to change the opacity of an image! The technique works in both IE4+ and NS6+, and can be used to create some interesting "fading" effects. Let's get started!

In IE4+, you can adjust the opacity of an image using the STYLE attribute:

HTML
<img src="ball.gif" style="filter:alpha(opacity=50)">

I've highlighted the main code. A value of 50 makes this image 50% oblique (or transparent). You can use a number between 0-100, where 0 would make the image disappear.

In NS6+, the code needed is a little bit different:

HTML
<img src="ball.gif" style="-moz-opacity:0.5">

Here the accepted range of values are 0 to 1, where 0 would make the image disappear.

You're probably now asking - how can I combine the two HTML above to make opacity specification work in both IE4+ and NS6+? Just define one STYLE attribute and put the two definitions inside it, separating the two with a semicolon:

HTML
<img src="ball.gif" style="filter:alpha(opacity=50); -moz-opacity:0.5">

Using JavaScript to alter opacity on the fly

This is where things get interesting and useful - using JavaScript to alter the value of the image's opacity! By doing so, you can make images fade in or out, for example.

The JavaScript syntax to change an image's opacity after it's been defined in the HTML is:

JavaScript
ImageObj.style.filters.alpha.opacity=90 //IE4 syntax
ImageObj.style.MozOpacity=0.9          //NS6 syntax

So for example, here's a simple script that adds a "lighting up" effect to your images as the mouse hovers over and out:

HTML
<script>

function lightup(imageobject, opacity){
 if (navigator.appName.indexOf("Netscape")!=-1
  &&parseInt(navigator.appVersion)>=5)
    imageobject.style.MozOpacity=opacity/100
 else if (navigator.appName.indexOf("Microsoft")!= -1 
  &&parseInt(navigator.appVersion)>=4)
    imageobject.filters.alpha.opacity=opacity
}

</script>

<img src="test.gif" style="filter:alpha(opacity=50); -moz-opacity:0.5" 
onMouseover="lightup(this, 100)" onMouseout="lightup(this, 30)">

If you want to see a more complicated "lighting up" effect, check out Gradual highlight script by Dynamic Drive. It uses basically the same technique as I do, though the opacity is changed incrementally.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralMy vote of 2 Pin
R o n n y14-Jul-09 23:23
R o n n y14-Jul-09 23:23 
GeneralSome additions Pin
Anonymous29-Oct-04 2:23
Anonymous29-Oct-04 2:23 
Some additonal comments to adjusting the opacity using JavaScript:

for KHTML-based browsers, the property is
<object>.style.KhtmlOpacity
for some browsers, it is
<object>.style.opacity

On Safari (Mac), an opacity value of 0 seems to be interpreted as 1 (i.e., full opacity, no transparency!)
QuestionStandards compliant? Pin
Paul Watson30-Sep-02 21:31
sitebuilderPaul Watson30-Sep-02 21:31 
AnswerRe: Standards compliant? Pin
Stephane Rodriguez.30-Sep-02 22:01
Stephane Rodriguez.30-Sep-02 22:01 
GeneralRe: Standards compliant? Pin
Paul Watson30-Sep-02 22:08
sitebuilderPaul Watson30-Sep-02 22:08 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.