Archive

Archive for the ‘javascript’ Category

Flash wmode and the click through transparent

June 3rd, 2009 3 comments

The typecast site http://beta.typecastawards.com which is due to go live next week was giving me some problems in the flash layer at the footer of the site. Basically Wmode = transparent does it’s job and on IE does its job event better because it allows you to click through the transparent area. The problem comes when you use FireFox, Chrome or Safari. Some have said that they have the bug and IE renders the page differently. Anyway after looking through a few javascripts and CSS solutions that didn’t do the job because of what we are doing. A layer always on top at the bottom of the page, never a good idea. I decided to just class the flash and add a :hover style to the div element around the flash.
.footer { height:100px}
.footer:hover {height:300px}
We still have a problem that the footer div is still active as you move up the page and only when you move out of it then it becomes 100px again, allowing you to click the links. I must think about this but I have lots of work to do. I will post the outcome soon.