Flash Games
 FAQ   Search   Memberlist   Usergroups   Register  Profile   Log in to check your private messages   Log in 


Simple Fade Image Script



 

Post new topic   Reply to topic  
   DEVPPL Forum Index -> Script-archive
View previous topic :: View next topic  
Author Message
rangana
250+ Club


Joined: 27 Feb 2008
Posts: 271
Location: Cebu City Philippines

PostPosted: Wed Apr 23, 2008 6:20 am    Post subject: Simple Fade Image Script Reply with quote

I have made a script wherein it gives your image a "Fade-In" effect Wink

Logically, we could play with the opacity feature of CSS Smile
Combining it with JS could give us an effect similar to PPT's "Fade-In" effect:)

Its full implementation could be seen with a complete script like this:
Code:

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
   "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">

<style type="text/css">
img{
filter:alpha(opacity=50);
opacity:.50;
text-align:center;margin:auto;}
#wrap{width:500px;margin:20px auto;border:3px double #aaa;text-align:center;padding:5px;}
</style>
<script type="text/javascript">
var iterate=1,fiterate=0.1,test;
function rangfunc()
{
   var obj=document.getElementById('myimage');
   obj.style.filter = 'alpha(opacity='+iterate+')';
   obj.style.opacity=fiterate;
   iterate+=2;
   fiterate+=0.02;
test=setTimeout('rangfunc()',50);
}
window.onload = function()
{
var obj=document.getElementById('myimage');
obj.style.filter = 'alpha(opacity=1)';
obj.style.opacity='0.1';
rangfunc();
}
</script>
</head>
<body>
<div id="wrap">
<img src="http://www.hickerphoto.com/data/media/186/nice-provence-france_12218.jpg" alt="myimage" id="myimage"/>
</div>
</body>
</html>
Back to top
View user's profile Send private message Yahoo Messenger
Display posts from previous:   
Post new topic   Reply to topic    DEVPPL Forum Index -> Script-archive All times are GMT + 1 Hour
Page 1 of 1

 
 
Welcome to DEVPPL.com
You are not logged in, which means that you can't post in the forums.
Click here to Register

If you are a current member here on DEVPPL, please login below:

User: Pass:
Log me on automatically each visit:

 


Powered by phpBB © 2001, 2005 phpBB Group - Modified by DEVPPL

Flash Games - Sitemap