The css-transitions tag has no wiki summary.
12
votes
5answers
2k views
CSS3 color transition not working in Chrome
The links in the left menu in this website have a CSS3 transition property of the color, which changes on mouse hover. It's not working in Chrome 16 or 17 (the color change is sudden), whereas other ...
10
votes
1answer
1k views
PolyFill/Shim for CSS transitions and animations
Google is failing me somewhat on this (I think because the terminology for PolyFill/Shim/Spackle is new and diverse at the moment). I'm trying to find a good JavaScript PolyFill or Shim for webkit's ...
9
votes
2answers
6k views
CSS3 transition events
Are there any events fired by an element to check wether a css3 transition has started or end?
8
votes
1answer
160 views
Seeking an elegant, CSS-only method for hiding/showing auto-height content (with transitions)
I'd like a method that uses only CSS transitions, to effectively (and attractively) hide/show content on hover.
The caveat being that I wish to keep dynamic (auto) height.
It seems that the optimal ...
7
votes
2answers
168 views
CSS transitions do not work when assigned trough JavaScript
I'm having some major headache trying to apply CSS3 transitions to a slideshow trough JavaScript.
Basically the JavaScript gets all of the slides in the slideshow and applies CSS classes to the ...
7
votes
2answers
98 views
Is there a performance issue with using very large background-position offsets?
I'm building a progress bar control, and I'm working on the case where it doesn't actually show progress, but just spinning indicator of "something is happening". The design I have for it is basically ...
7
votes
1answer
6k views
Does Internet Explorer support CSS transitions?
CSS transitions are a very neat way of animating changes in CSS properties. Do any versions of Internet Explorer support them?
6
votes
1answer
83 views
CSS3 Transitions: Is “transition: all” slower than “transition: x”?
I have a question about rendering speed for the css3 transition property.
Suppose I have a number of elements:
div, span, a {transition: all}
div {margin: 2px}
span {opacity: .5}
a:hover ...
6
votes
2answers
336 views
Does WebKit use OpenGL to render CSS transitions?
Does WebKit use OpenGL to render CSS transitions, or does it use software rendering?
6
votes
5answers
1k views
How do I normalize CSS3 Transition functions across browsers?
Webkit's transition end event is called webkitTransitionEnd, Firefox is transitionEnd, opera is oTransitionEnd. What is a good way of tackling all of them in pure JS? Should I do browser sniffing? or ...
5
votes
4answers
76 views
Keeping style applied using :hover until transition complete?
I have a bunch of tiles on a page that expand as the user mouses over them. The expanded one should have the highest z-index, and this works, but I need the z-index to remain until the size transition ...
5
votes
2answers
83 views
CSS3 Transitions with toggleClass
I have the -webkit-transition-duration property set on a div, whose height is set by another class. When I use jQuery to toggle the class, it the transition does something funky.
It goes all the way ...
5
votes
3answers
147 views
Input field leaving artifacts from CSS3 transition (in Chrome 15)
http://jsfiddle.net/danielcgold/SYgzJ/
When you click on the input then go on blur, artifacts are left on the screen in Chrome 15. I first noticed this issue on a site i've been developing so I ...
4
votes
2answers
85 views
Rotating images based on CSS nth-child
I was able to write a JavaScript carousel and thought it might be more compact to use CSS transitions with nth-child selectors like this:
img {
transition: all 1s linear; /* or corresponding ...
4
votes
1answer
172 views
CSS Animation/Scale issue in Chrome/Webkit
This effect works fine in FF but not Chrome- the Firebug results in Chrome show that the '-webkit-animation' aren't rendered in Chrome. In Firefox however, you see the'stretch' effect on entrance of ...
4
votes
2answers
314 views
Strange css3 transition behavior with a:visited
I just discovered a strange CSS3 transition problem with a:hover and a:visited in Google Chrome. (demo) The link should have an orange background and after having been visited it should be blue. When ...
4
votes
1answer
262 views
Use cases for CSS transitions and CSS animations
As far as I understand, there is no such thing we can implement using css transitions, but we can not to implement using css animations, but not vice versa.
That is, any transition has a css ...
3
votes
2answers
39 views
Why's the CSS3 transition property acting funny?
Weird stuff happening here. See this tinkerbin page, if you may: http://tinkerbin.com/UZy6H6q4
Here's the html and css in case you can't see the tinkerbin.
<head>
<style>
ul{
...
3
votes
2answers
63 views
Triggering CSS3 Transform on browser resize
I have been playing with animated CSS3 Media Queries, yes I know their practical use is questionable but it is fun. Anyways, I can get boxes/divs/selectors to transition/expand/contract/change color ...
3
votes
1answer
53 views
CSS Transitions with inline-block
Is there a way to use CSS transitions or animations to smooth the effect on inline-block elements being re-positioned when we resize the window?
Like this, but with animation: ...
3
votes
1answer
100 views
Is it possible to animate moving and fading in text with CSS3?
What I'm trying to do is slide the first bit of text to the right and then fade in the hidden text.. possible?
Still testing a couple things with CSS3 and was wondering if this was possible: ...
3
votes
2answers
230 views
Hovering over CSS transition in Safari lightens certain font color
In my CSS I defined a transition for a class. For some reason, when I hover over the class with the transition, the transition-duration for some reason alters the font color elsewhere (form ...
3
votes
2answers
185 views
CSS3 Transition not working
I couldn't get transitions to work on this page, anybody has any idea why?
div.sicon a {
transition: background 0.5s linear;
-moz-transition: background 0.5s linear; /* Firefox 4 */
...
3
votes
2answers
221 views
CSS3 transitions chaining
What is a syntactically clean solution to run a chain of individual CSS3 transitions on a single element, one by one? An example:
set left to 10px and opacity to 1 through 200ms
set left to 30px ...
3
votes
1answer
359 views
Detect css transitions using javascript (and without modernizr)?
How would I detect that a browser supports css transitions using javascript (and without using modernizr)?
3
votes
1answer
166 views
CSS3 Transitioning Transforms in Mobile WebKit
I have a transition transform on an element in CSS3, but whenever I run the animation, it seems that one of the elements involved in the animation is always hidden for the duration of the animation.
...
3
votes
1answer
773 views
Disable/turn off inherited CSS3 transitions
So i have the following css transitions attached to the a element:
a {
-webkit-transition:color 0.1s ease-in, background-color 0.1s ease-in ;
-moz-transition:color 0.1s ease-in, ...
3
votes
4answers
976 views
Ken Burns with CSS 3 - How hard can it be
Working with CSS3 I see no reason why a CSS based Ken burns effect would not work. My first attempt involved using Jquery to add a new class to a background image.
.flare1 {
...
3
votes
1answer
463 views
CSS transition defined in external stylesheet causes transition on page load
I've narrowed down my issue to a fairly simple case. This works (in Chrome, at least), displaying a "pop-up" which is mostly off-screen, with a slice of the right hand side on screen. When I hover ...
2
votes
1answer
33 views
jquery mobile dialog transition right to left?
I need to create the "Facebook iPad" look and feel using jQueryMobile.
I have a little question:
How to "stack" a page over the current page of my app from right to left?
(I need to mimic the same ...
2
votes
1answer
74 views
How do I detect a transition end without a JavaScript library?
I'd like to delete an object after it's done animating with a CSS transition, but I'm not able to use a JavaScript library.
How do I detect when the animation is done? Do I use a callback or custom ...
2
votes
2answers
173 views
Create a slide out panel using CSS and HTML
I am looking to build a home page for a website. I would like the home homepage to have 4 or 5 rectangles, one after the other, down the centre of the page. Each of the these rectangles will have an ...
2
votes
2answers
62 views
How to fix/workaround inconsistency in browser implementations of the transitionend event for CSS3 Transitions?
I set up a jsfiddle here to show some of the inconsistencies I'm noticing.
Opera throws 'bonus' transition events for you to dodge...
Firefox is probably as it should be, which is still ...
2
votes
1answer
141 views
Fire CSS3 Transform from Javascript button click
I am new to CSS3 transitions. I am trying to make a image slideshow for webkit only. there are 3 images aligned next to each other inside a wide DIV. This wide DIV is inside a container DIV whoose ...
2
votes
1answer
134 views
Jquery Mobile data-role=“content” without using Jquery Mobile?
I basically want to create the effect of parts of the DOM - divs etc - acting like single pages, like the data-role = content or page - but without using jquery or jqmobile as I find those frameworks ...
2
votes
1answer
237 views
CSS3 Photo Gallery Transition Effect
I'm trying to create a graceful transition between the images within my photo gallery without using ":hover" or an once of Javascript. (I'm still open minded to HTML5)
The animation, this slideshow, ...
2
votes
1answer
86 views
CSS 3 fade animation on hover - issue in Opera
So I have these rules:
a{
background-color: transparent;
-webkit-transition: background-color .3s ease-in-out;
-moz-transition: background-color .3s ease-in-out;
-o-transition: ...
2
votes
1answer
101 views
CSS3 transition for :after pseudoelement
Check out this fiddle: http://jsfiddle.net/sajYc/
The transition for the :after pseudo element works in firefox, but fails in webkit based browsers. Any idea if this is coming up in a future release? ...
2
votes
2answers
151 views
Is there a CSS workaround for Opera's bug with visibility transition?
Here is a fiddle for start: http://jsfiddle.net/kizu/A7QX9/
The problem: in Opera when you animate the transition for visibility property (usually along with the opacity) it's not animated properly: ...
2
votes
2answers
61 views
webkit transforms - why does my animated cube show the text on the hidden sides, and have gaps between the sides?
I am trying to make a 3d transition/transformation so that when a link is click a bar run the length of my website rotates to reveal different options. However it currently looks very untidy, in that ...
2
votes
1answer
79 views
targetig multiple css elements with css3 transition
I think this will be easier to show you than explain, but basically I am trying to create a transition effect on two separate div tags when the user hovers over one of them. Here's an example I just ...
2
votes
2answers
209 views
CSS Transition Not Firing
I'm creating a DOM element (a div), adding it to the DOM, then changing its width all in one quick hit in javascript. This in theory should trigger a CSS3 transition, but the result is straight from A ...
2
votes
2answers
385 views
CSS3 Transition Polyfill
Alright, so most of you will be familiar with CSS3 Transitions, I prefer it above jQuery animations as it has the simplicity of CSS. My only regret is that it doesn't work in IE < 9( As always ) as ...
2
votes
2answers
510 views
Slow CSS3 animation flickers in Firefox
I want to zoom slowly into an image. My idea works very nice in webkit but not in Firefox.
Does someone know why or how to make it better?
2
votes
1answer
276 views
CSS transition-duration does not update the transition?
I am currently writing a jQuery plugin to create / manage CSS transitions, and I found this strange behavior with transition-duration.
Apparently, while a transition is running, any changes to the ...
1
vote
1answer
241 views
Twitter Bootstrap carousel doesn't work on older browsers
Per the docs, this should be enough to run Twitter Bootstrap:
<div class="carousel">
<div class="carousel-inner">
<!-- items -->
</div>
</div>
...
1
vote
1answer
103 views
Is there a Firefox equivalent to Chrome's “translateZ(0);” to force GPU accelerated CSS animation?
I have a CSS3 transition which is smooth as silk in Chrome, but choppy in (the latest version of) Firefox
I know that I can force GPU acceleration on a DOM object in Chrome by setting ...
1
vote
1answer
50 views
CSS3 Transition: Different transition for *IN* and *OUT* (or returning from transitioned state)
Original Question... updated working code below:
I have a loading image which comes up during an ajax load event. The image shows/hides by adding or removing a "loading" class to the body element. ...
1
vote
1answer
29 views
css background transition in opera goes through black
I'm just getting into CSS3 transitions (about time!) and I witness some strange behavior in Opera 11.60.
I use a transition to change an element from background:none to background:#fff. However, the ...
1
vote
1answer
49 views
CSS3 Transition from normal flow position to absolute
I've hit this one a couple of times in the past and never walked away with a good solution. If I have several HTML elements that are positioned according to natural document flow. For the sake of ...