Second animation doesn't work in IE
Hi there,
Both animations work fine in Firefox, Google Chrome & Safari. In IE however, the first animation is working, but the second isn't, witch is kinda weird, isn't it ? I hope someone can help me.
I've put the source code below, if you need anything else, just ask or check the live source (for js files etc.)
Any help is appreciated, thanks.
Here is the html code and a link to animation.js:
- <!DOCTYPE HTML>
- <html lang="en-US">
- <head>
- <meta charset="UTF-8">
- <title>Narek Aramjan | Personal Website</title>
- <link rel="stylesheet" type="text/css" href="css/style.css" media="all" />
- <link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
- </head>
- <body>
- <div id="content">
- <a href="http://www.narekaramjan.com/"><img src="images/narek_aramjan.png"/></a>
-
- <div id="the_action">
- <div id="am_animation"></div>
- <div id="go_animation"></div>
- <a class="link" id="link_blog" href="http://narekaramjan.tumblr.com/"></a>
- <a class="link" id="link_twitter" href="http://twitter.com/narekos"></a>
- <a class="link" id="link_hyves" href="http://narekk.hyves.nl"></a>
- <a class="link" id="link_videos" href="http://www.youtube.com/user/narekaramjan?feature=mhw5"></a>
- <a class="link" id="link_things" href="http://www.daytum.com/narekaramjan"></a>
- <a class="link" id="link_email" href="mailto:me@narekaramjan.com"></a>
-
- <div id="email_bubble" class="transparent"></div>
-
- </div><!-- end div the_action -->
-
- <div id="footer">
- <p class="align_left">
- This page is best viewed with <a href="http://www.mozilla.com/en-US/" class="blue">Firefox</a> |
- Created in <a href="http://validator.w3.org/check/referer" title="Validate html " class="blue">html 5</a> and <a href="http://jigsaw.w3.org/css-validator/check/referer" title="Validate CSS" class="blue">CSS3</a>
- </p>
-
- <p class="align_right">
- 2010 © Narek Aramjan
- </p>
- </div><!-- end footer -->
- </div><!-- end div content -->
- <!--[if IE]>
- <script src="/js/html5.js"></script>
- <![endif]-->
- <script type="text/javascript" src="js/base.js"></script>
- <script type="text/javascript" src="js/animation.js"></script>
- <script type="text/javascript">
- am_animation = new SlideAnimation('am_animation', ['am_student_of_life.png',
- 'am_go_get_what_i_want.png',
- 'am_20_years_old.png',
- 'am_enjoy_every_second_of_life.png',
- 'am_always_think_big.png',
- 'am_never_sweat_it.png'], 5000, 3000);
- go_animation = new SlideAnimation('go_animation', ['love_learning_new_things.png',
- 'love_to_party.png',
- 'love_all_women.png',
- 'love_to_read.png',
- 'love_working_out.png',
- 'love_myself.png',], 5000, 5500);
-
- email_bubble = new EmailBubble();
- </script>
- <!-- Google Analytics -->
- <script type="text/javascript">
- var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
- document.write(unescape(""));
- </script>
- <script type="text/javascript">
- try {
- var pageTracker = _gat._getTracker("UA-15539090-3");
- pageTracker._trackPageview();
- } catch(err) {}</script>
- </body>
- </html>