First of all I apologize if this is considered a crosspost. I asked this question as a reply in another thread last week but wasn't sure if it would get noticed.
Basically I was using this code to fade in a specific table on a page by placing the div tags directly before and after the table code:
It did what I wanted, the main page loaded normally and the specified table faded in. However it didn't work in safari, so I updated the code to this:Code:<html> <head> <meta http-equiv="Page-Enter" content="blendTrans(Duration=3.0)"> <script type="text/javascript"> function fadeInPage(){ if (document.getElementById("fadeDiv").style.MozOpacity < 1){ document.getElementById("fadeDiv").style.MozOpacity = .1 + Math.abs(document.getElementById("fadeDiv").style.MozOpacity) setTimeout("fadeInPage()",200); } else document.getElementById('fadeDiv').style.visibility = "visible"; } </script> </head> <body onLoad="fadeInPage()"> <DIV ID="fadeDiv" style="-moz-opacity:0.00; width:100%"> Welcome to my Homepage! </DIV> </body> </html>
This worked in all the browsers I tried but no matter where I placed the div tags it would fade-in the entire page, not just the table. Is there a way to target a table with this code? or if I revert to the older code, is there a way to automatically direct safari users to a safer version of the page? Thanks.Code:<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"><html> <head> <meta http-equiv="Page-Enter" content="blendTrans(Duration=3.0)"> <!-- NOTE: Above meta tag required for IE page transition, adjust duration (in seconds) as desired --> <title>Fade-In Page Demo</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <style type="text/css"> /* Style for Fade-In Page script */ #fadeDiv { display:none; } /* End Style for Fade-In Page script */ </style> <script type="text/javascript"> /* Fade-In Page script ©2008 John Davenport Scheuer As first seen in http://www.dynamicdrive.com/forums/ username:jscheuer1 - This credit must remain for legal use. */ fadeInPage.speed=50; //Set speed of transition for non-IE, lower numbers are faster, 20 is the minimum safe value fadeInPage.bg='#fff'; //Set backgroud style (color or color and image) of transition division for non-IE, should match page background or the predominant color of the page ///////////////// Stop Editing ///////////////// function fadeInPage(){ var el=document.getElementById("fadeDiv"); el.style[fadeInPage.prprt] = el.style[fadeInPage.prprt] == ''? 1 : el.style[fadeInPage.prprt]; if (el.style[fadeInPage.prprt] > 0){ el.style[fadeInPage.prprt] = el.style[fadeInPage.prprt] - 0.02; setTimeout("fadeInPage()", fadeInPage.speed); } else { el.style[fadeInPage.prprt] = 0; if(document.removeChild) el.parentNode.removeChild(el); } } if(document.documentElement&&document.documentElement.style){ fadeInPage.d=document.documentElement, fadeInPage.t=function(o){return typeof fadeInPage.d.style[o]=='string'}; fadeInPage.prprt=fadeInPage.t('opacity')? 'opacity' : fadeInPage.t('MozOpacity')? 'MozOpacity' : fadeInPage.t('KhtmlOpacity')? 'KhtmlOpacity' : null; } fadeInPage.set=function(){ var prop=fadeInPage.prprt=='opacity'? 'opacity' : fadeInPage.prprt=='MozOpacity'? '-moz-opacity' : '-khtml-opacity'; document.write('\n<style type="text/css">\n#fadeDiv {\nheight:'+window.innerHeight+'px;display:block;position:fixed;'+ 'z-index:10000;top:0;left:0;background:'+fadeInPage.bg+';width:100%;\n'+ prop +':1;\n}\n<\/style>\n'); } if(window.addEventListener&&fadeInPage.prprt){ fadeInPage.set(); window.addEventListener('load', fadeInPage, false); } </script> </head> <body> <div id="fadeDiv"></div> <div> Welcome to my Homepage! </div> </body> </html>



Reply With Quote

Bookmarks