CSS transitions provide a way to animate changes to CSS properties instead of having the changes take effect instantly.

learn more… | top users | synonyms (1)

0
votes
3answers
30 views

why is this not fading in the block instead of just showing it?

I'm trying to fade in a block using css transitions. I have a class that is set to opacity 1, after setting the display to block from none. It ignores the transition. Can anybody tell me why? Thanks. ...
0
votes
0answers
23 views

Grayscale to color transition not working in firefox

.picture-box img { display: inline-block; filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' ...
0
votes
1answer
18 views

TransitionEnd stacking events

When trying to do some slides for a mobile-page I run into a problem with transitions and transitionEnd $(document).on('click', '#map_view', function () { var lpw = $('.list-page-wrap'), mpw = ...
1
vote
1answer
26 views

CSS3 fade in, pause, fade out on hover

I have a number of divs (boxes) that when you hover over them apply a coloured overlay that fades in and fades out when the mouse leaves the div area. Using CSS3 alone, how do I adapt my code to do ...
0
votes
2answers
18 views

CSS3 transition on box-shadow at :active

Is it possible to use :active for animating a change in box-shadow with duration and delay. I have a change in color on :hover with duration. Apparently the same approach doesn't work for ...
3
votes
2answers
60 views

Apply CSS properties when transition ends

How do I have the properties of a declaration apply to an element after the CSS3 transitions end? I have something like: .something { background: blue; padding: 10px 0px; background-clip: ...
0
votes
1answer
13 views

navigation buttons li span width

I have a nav containing inline block li's. Each li contains two block span elements so it animates on rollover. My issue is with the centre alignment and spacing of the li navigation. I don't want to ...
0
votes
0answers
15 views

CSS transition in Firefox bug

I have a problem with moz-transition in Firefox for images: .view-tenth img { -webkit-transform: scaleY(1); -moz-transform: scaleY(1); -o-transform: scaleY(1); -ms-transform: scaleY(1); ...
1
vote
0answers
24 views

extend twitter bootstrap carousel so that transitions are diagonal

I am trying to modify the twitter bootstrap carousel (http://twitter.github.io/bootstrap/javascript.html#carousel) so that rather than sliding in straight from the side the items slide in diagonally. ...
1
vote
1answer
37 views

Why doesn't this rotate3d() CSS transform work as expected in Internet Explorer 10?

I'm trying to create a "card flip" effect using CSS transforms and transitions. I'm using a <div> to represent the card, and two child <div>s to represent the front and back faces of the ...
0
votes
2answers
56 views

CSS Transition Fade Direction [duplicate]

I am messing around with CSS transitions and am having difficulty getting the effect I want. My idea was to have some text be the same color as the background effectively making it invisible, I was ...
0
votes
0answers
9 views

Safari: Fixed background + transition

Example site I have a site divided into your usual vertical sections. Header and footer both contain backgrounds with background-attachment: fixed. I have a slide-out nav, which you can see is ...
0
votes
1answer
17 views

Iphone / Ipad like, Icon shaking Effect jquery / CSS3 [closed]

i already tried to searching on Google for Shaking effect / Dancing icon/object effect but i cannot get a good answer, how to create an shaking/dancing animation, just like what we see in iphone/ipad ...
1
vote
4answers
58 views

How to make text slowly change color on hover?

I want to make my text change color slowly like this: http://trentwalton.com/2011/05/10/fit-to-scale/ Any Ideas?
0
votes
0answers
18 views

Is there an easy way to make the twitter bootstrap carousel change size smoothly while it slides?

Does anybody know how I could easily make a twitter bootstrap carousel change size smoothly while it slides? I am using the carousel (without automatic transitions, of course) for a several-step ...
0
votes
2answers
27 views

Odd opacity transition with CSS

I have a menu which changes the color from white to brown progressively when the mouse is over. However, when I leave the mouse, the transition begins from white when it should be from brown to white ...
0
votes
1answer
27 views

css3: element always rotates around center

I have this demo. As is shown, the element rotates around its center, but what I'm trying is to let it rotate around its left border (or left axis, or y-axis ?). Is this possible ? Here is my html ...
2
votes
1answer
35 views

css3: two transitions with different timing functions (css3)

I want to use a transform for both scale and translateX, but each with a different timing function. Currently I have it working with absolute positioning instead of translateX, as follows: ...
0
votes
1answer
28 views

How can I prevent a responsive nav menu (powered by a CSS3 transition) from animating when different media queries take effect?

Preface I'm trying to create a responsive website with a navigation menu that satisfies the following two requirements: Navigation is fully visible in a normal browser window, laid out ...
1
vote
1answer
63 views

Animating a “peek” effect with CSS only

I'm trying to create a "peek" effect with only CSS animations. What I mean by that is that There will be a little blurb of content in a square, with a more detailed description underneath. When the ...
0
votes
0answers
23 views

Gradient transitioning through background-position does strange things

I'm trying to create a transition on a gradient background of a <div>. I'm trying to do it this way because I'd like to implement two different styles on my site a light one and a darker one. ...
2
votes
1answer
34 views

CSS3 transition only when class is added, not when removed

I have the following CSS example: .message{ background-color: red; transition: background-color 5s; -webkit-transition: background-color 5s; /* Safari */ transition-delay: 2s; ...
0
votes
2answers
44 views

Opposite of jQuery.camelCase for CSS property names

jQuery.camelCase is used to convert dashed CSS properties to camelcased CSSOM(? or DOM?) properties. I'd like to do the opposite to dynamically create a CSS transition value. I don't want to use the ...
0
votes
1answer
22 views

CSS3 Animations to only start after the page has been created

I have built a website that has lots of animations, using CSS3. The elements that are animated all have the position attribute set to absolute, and the container's position set to relative. Each ...
0
votes
1answer
27 views

Is there a way to disable transitions during zooming?

When I zoom in on a page that uses CSS3's transition property on things such as width, height, padding, margin, etc., the elements will transition when you zoom in and out. Is there a way to disable ...
3
votes
1answer
32 views

CSS transition not running after element is moved to different parent

I got two list of elements and I want to move items from one list to another with a simple CSS transition. The logic: Add the hidden class to element in order to fade it out (opacity: 0, width: 0, ...
0
votes
2answers
34 views

Font-Weight CSS Transition in Chrome

Trying to get font-weight to gracefully transition from '400' to '600' using CSS but it doesn't appear to be working in Chrome. Is this a known bug or am I doing something wrong? Check the Fiddle ...
2
votes
1answer
55 views

Create a swipe between pages with CSS and JQuery

I'm trying to mock up a smartphone swipe navigation in HTML+CSS+JQuery. I'm setting few iframes that includes my HTML pages and then swipe between them from a navigation menu. that's nice, but I want ...
0
votes
0answers
31 views

How to fix CSS3 transform:scale , shadows image hover effect in ie 8

I Want Fix This effect in ie8 bacause in ie8 this below code not works .css3gallery img{ -webkit-transform:scale(1); /*Webkit: Scale down image to 0.8x original size*/ -moz-transform:scale(1); ...
0
votes
1answer
17 views

IE onclick issue with hidden modal div that gets shown with CSS transition

I am encountering some inconsistencies with IE9+ with a hidden modal div. See the code below: On any other HTML5 browser, the inline onclick of the will trigger the alert first and then transition in ...
0
votes
0answers
93 views

How to draw circle animation not using canvas?

I have a background image, and a div child in which I draw a circle. Here some sample code http://codepen.io/anon/pen/hybAs . I want to be able to "erase" this circle like Pacman until there is no ...
1
vote
1answer
28 views

Load CSS classes (with transitions) from cookies without transitioning into them

Here goes my first post on stackoverflow! I have created css to transition between two different background colors. .body { font-family: Tahoma, Geneva, sans-serif; font-size: 20px; ...
1
vote
1answer
45 views

How to apply transition only defined element, not its child? // simple accordion

I am in a sitiation which i need to use transition on li's width but not its child img There is small images in li element. When user hover's li element width is expanding with inside image. I am ...
0
votes
0answers
36 views

CSS Transition Only Work Halfway

I am making a custom WordPress (just in case this could help) search box and the transition only working "halfway" than what I intended. The idea is to have a search-image, click on it and then the ...
1
vote
2answers
30 views

CSS3 transitions not working on android correctly

Can anyone see anything in the below code that would cause issues on Android? On android, when the code is used it fails on the first attempt, gives a blank screen, then if you tap again it works. ...
1
vote
1answer
51 views

CSS transitions don't update the hover state

When you transition objects, the hover state doesn't get updated (CSS rules with :hover) until you move the mouse. When you move DOM elements beneath the users' mouse (with transition or some other ...
1
vote
1answer
28 views

Synchronize animations in different browser windows

I'm working on an app which will display a kind of animated slideshow. Multiple monitors will be showing different, but related animations, controlled by the same computer. Animations must be ...
-1
votes
0answers
37 views

Add a 3rd panel (bottom) to jquery mobile [closed]

Did anybody managed to add a 3rd panel, beside the 2 that already exist in jquery mobile? If so, can you share your solution? Thank you
1
vote
2answers
68 views

How can we apply CSS3 style to a image in GWT 2.5

I want to apply a CSS3 transform style to an image in GWT. For Example imageZoom.getElement().getStyle().setProperty("-webkit-transform", "translate3d("+x+"px, "+y+"px, 0px)"); Where x and y are ...
4
votes
2answers
43 views

CSS3 Transitions - Adding 2 different transitions to the same element

I am having issues with my CSS3 transitions: div.one_fifth{ border: 1px solid #48484A; transition : border 400ms ease-out; -webkit-transition : border 400ms ease-out; -moz-transition : ...
0
votes
1answer
35 views

Issue with CSS3 transition flow

I have setup a background transition on this page. The first area of the page "Il Blog - Leggi tutti gli articoli" and "Gli Eventi - Leggi tutti gli eventi" shows a list of different post types in ...
4
votes
2answers
58 views

Cleaning up CSS jitters

I've built these circles that expand a border when there is a mouseover. The only problem I'm getting now is some times the circle will jitter/shake. And it becomes more apparent when I set the ...
-1
votes
0answers
22 views

Best way to create iPhone panel slide [closed]

Using CSS and JavaScript I am looking at the best way to create the iPhone panel slide effect. E.g. I want to be able to swipe left and a new panel of content comes onto the page from the right and ...
0
votes
2answers
49 views

Underline transition in menu

I have a menu with a lava-lamp like underline that looks like this: The underline slides between links when clicking on them. Try a jsfiddle HERE. My only problem is that if you click outside the ...
0
votes
1answer
44 views

Change Image Size with Javascript (replicate)

Okay so i have been looking at this for over a week and can not figure it out. Basically here is an example of the end result i posted earlier: Previous Stack Overflow Post Their suggestions did ...
1
vote
1answer
68 views

background-size cover makes css3 animation choppy

I have a grid of images that i want to animate to the top with css3. It works until i put Background-size: cover onto the grid. The animation becomes choppy. What am i doing wrong, or what can i do to ...
0
votes
1answer
25 views

Position an object relative to its container?

I'm making a server listing website and for each server I'd like to display an image and some information that will be shown when the pictured is "hovered" with the mouse. When the server name is too ...
2
votes
1answer
67 views

Setting “auto” width to computed value gives 0, but height works

http://11bouchardg.decmultimedia.ca/myriam_coiffure The problem regards the website linked above. http://pastebin.com/HyyB9vhL This is the part of the code that doesn't work as intended. Please ...
0
votes
0answers
23 views

How do you prevent scaling of child divs when using scale3D?

I am trying to recreate a card flip and expand effect using CSS3, It's working OK (see pastebin here) but the scale3D appears to be blurring all the text. From other threads around here I've seen that ...
0
votes
1answer
40 views

Safari unexpectedly randomly glowing during transitions

I've encountered an unexplainable problem with Safari. I'm using Transit Js Library to use CSS3 transitions with jquery. It actually works but during opacity transitions some elements in the page ...

1 2 3 4 5 25