Jump to content

div fade


vbnullchar

Recommended Posts

javascript

 

To give a little more help than that, here is a simple fade script that works in all major browsers by using javascript to manipulate the CSS for a "myDiv" element:

<style type="text/css">
body {
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size: 11px;
color: #255831;
}

#myDiv {
border: 1px solid #22411B;
background-color: #E0E9DA;
float: left;
padding: 10px;
}

#myDiv p {
padding: 0;
margin: 0;
}
</style>

<script type="text/javascript">
var origOpacity = 100;

function doFade() {
ele = document.getElementById('myDiv');
origOpacity -= 10;
ele.style.filter  = "alpha(opacity='" + origOpacity + "')";
ele.style.opacity = (origOpacity / 100);
if (origOpacity > 0) {
	t = setTimeout('doFade();', 100);
}
}

window.onload = function() {
x = setTimeout('doFade();', 5000);
};
</script>

<!-- Body Starts Here -->

<div id="myDiv">
<p>Some Content</p>
</div>

 

Notice that the opacity only works in IE when you have a float or fixed width on the div.

Link to comment
https://forums.phpfreaks.com/topic/46402-div-fade/#findComment-227548
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.