| Page 1 of 1 | [ 4 posts ] |
|
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? |
|
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. |
|
Sorry I missed your first post.
This is a known issue: http://yuilibrary.com/projects/yui3/ticket/2532213 |
|
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 . . . |
| Page 1 of 1 | [ 4 posts ] |
| 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 |
© 2006-2013 Yahoo! Inc. All rights reserved.
All code on this site is licensed under the BSD License unless stated otherwise.
About This Site · Security Contact Info
Powered by phpBB® Forum Software © phpBB Group