weegillis
07-30-2011, 09:29 PM
I've just taken the plunge (2 years late?) in elementary CSS3 transitions, and discovered that while we're told that Opera 11.50 supports it, I've hit a snag:
From the get go, I sought out and borrowed code from the ever popular, ever trustworthy AListApart (http://www.alistapart.com/). My version is only slightly different from that of the article, Understanding CSS3 Transitions; by DAN CEDERHOLM
(http://www.alistapart.com/articles/understanding-css3-transitions/)
CSS
li.nav a {
display: block;
width: 100%;
height: 1.3em;
/* background transition */
-webkit-transition: background 0.5s ease;
-moz-transition: background 0.5s ease;
-o-transition: background 0.5s ease;
transition: background 0.5s ease;
}
The only problem, Opera isn't responding. The element inspector reveals that all the property values are empty, meaning possibly that the shorthand in Dan's example is not recognized, though I cannot see how that could be.
Has anyone else discovered inconsistencies of this nature in Opera 11.50?
From the get go, I sought out and borrowed code from the ever popular, ever trustworthy AListApart (http://www.alistapart.com/). My version is only slightly different from that of the article, Understanding CSS3 Transitions; by DAN CEDERHOLM
(http://www.alistapart.com/articles/understanding-css3-transitions/)
CSS
li.nav a {
display: block;
width: 100%;
height: 1.3em;
/* background transition */
-webkit-transition: background 0.5s ease;
-moz-transition: background 0.5s ease;
-o-transition: background 0.5s ease;
transition: background 0.5s ease;
}
The only problem, Opera isn't responding. The element inspector reveals that all the property values are empty, meaning possibly that the shorthand in Dan's example is not recognized, though I cannot see how that could be.
Has anyone else discovered inconsistencies of this nature in Opera 11.50?