[ 4 posts ]

shaun_d526

  • Joined: Wed Jan 18, 2012 4:20 am
  • Posts: 13
  • Offline
  • Profile
Tags:

Transitioning colours not working in IE . . .

Post Posted: Tue Aug 14, 2012 11:42 am
+0-
I'm trying to transition color with a delay for something I'm coding, the problem is for some reason, IE will not transition the color . . . everything else transitions fine in IE but the color remains transparent.

Example code that doesn't work in IE:

Code:
<!DOCTYPE html>
<html>
   <head>
      <title>Testing Transition in IE</title>
      <script src="http://yui.yahooapis.com/3.6.0/build/yui/yui-min.js"></script>
      <style>
         body { font-family: arial; }
         #testing { background: #d8d8d8; color: transparent; margin: 200px; position: relative; width: 100px; height: 100px; }
      </style>
   </head>
   <body>
   
   
      <div id="testing">
         <p>this is a test lorem ipsum dolor sit amet consecutur balh badsfik gjoigsdj ogfds dspfsaldfkfd g;dfoig sjkgfl bvcmx,nbvcoi[d[vxc kds opsg k tjsrpy</p>
      </div>
   
   
   <script type="text/JavaScript">
      YUI().use('node', 'event', 'anim-base', 'transition', 'io', function(Y) {
         var testing = Y.one("#testing");
         
         testing.on("click", function(e) {
            testing.transition({
               duration: 0.32, // seconds
               easing: 'ease-in',
               width: '200px',
               height: '200px',
               color: {
                  delay: 0.3,
                  duration: 0.22,
                  value: 'black',
                  easing: 'ease-in'
               }
            });
         });
      });
   </script>
   </body>
</html>


Is this a know bug/issue or have I made a mistake in my code somewhere?

shaun_d526

  • Joined: Wed Jan 18, 2012 4:20 am
  • Posts: 13
  • Offline
  • Profile

Re: Transitioning colours not working in IE . . .

Post Posted: Fri Aug 17, 2012 9:50 am
+0-
I'm not sure if I'm really allowed to bump this, but I'm really stumped here, and if this is an issue with YUI itself should it be addressed or at least recognised?

I've also put up a jsFiddle for easier access to the example.

Matt Sweeney

YUI Developer

  • YUI Developer
  • Offline
  • Profile

Re: Transitioning colours not working in IE . . .

Post Posted: Fri Aug 17, 2012 10:02 am
+0-
Sorry I missed your first post.

This is a known issue:
http://yuilibrary.com/projects/yui3/ticket/2532213

shaun_d526

  • Joined: Wed Jan 18, 2012 4:20 am
  • Posts: 13
  • Offline
  • Profile

Re: Transitioning colours not working in IE . . .

Post Posted: Fri Aug 17, 2012 10:34 am
+0-
Ok thanks for your reply, hopefully it'll get fixed in the not too distant future!

I'm developing a serious hatred of IE though, bane of my life at the moment . . .
  [ 4 posts ]
Display posts from previous:  Sort by  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum