vbnullchar Posted April 10, 2007 Share Posted April 10, 2007 how can i fade a div in a let say after 5 seconds? thanks Link to comment https://forums.phpfreaks.com/topic/46402-div-fade/ Share on other sites More sharing options...
ToonMariner Posted April 12, 2007 Share Posted April 12, 2007 javascript Link to comment https://forums.phpfreaks.com/topic/46402-div-fade/#findComment-227533 Share on other sites More sharing options...
obsidian Posted April 12, 2007 Share Posted April 12, 2007 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 More sharing options...
veridicus Posted April 12, 2007 Share Posted April 12, 2007 I recommend script.aculo.us. Take a look at the visual affects it can easily do. Link to comment https://forums.phpfreaks.com/topic/46402-div-fade/#findComment-227587 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.