DO NOT USE! THIS TAG IS AMBIGUOUS. Try to use a less ambiguous tag like [css-transitions], [android-animation] or [ios-animations] [pytransitions] if possible.
Questions tagged [transition]
5240 questions
42
votes
1 answer
Start Activity with an animation
I am trying to start an activity with a custom transition animation. The only way I have found out so far to do this (without using onPendingTransition() in the previous activity) is to use a custom theme on the activity and define either…

adityad
- 483
- 1
- 6
- 9
40
votes
4 answers
Animate selector/state transitions
I have a simple selector for my ListView
-

C.d.
- 9,932
- 6
- 41
- 51
40
votes
3 answers
Implement page curl on android?
I was surfing the net looking for a nice effect for turning pages on Android and there just doesn't seem to be one. Since I'm learning the platform it seemed like a nice thing to be able to do is this.
I managed to find a page here:…

Hamid
- 4,410
- 10
- 43
- 72
39
votes
5 answers
How big of a jump will it be to go from C# to Objective C
How hard will it be to transfer from my existing expertise in C# to building apps for the iPad/iPhone in Objective C?

Keith Adler
- 20,880
- 28
- 119
- 189
38
votes
3 answers
Looping Animation of text color change using CSS3
I have text that I want to animate. Not on hover, for example but continually changing slowly from white to red and then back to white again.
Here is my CSS code so far:
#countText{
color: #eeeeee;
font-family: "League Gothic", Impact,…

Alex Jj
- 1,343
- 10
- 19
- 30
37
votes
2 answers
How do I make an expand/contract transition between views on iOS?
I'm trying to make a transition animation in iOS where a view or view controller appears to expand to fill the whole screen, then contract back to its former position when done. I'm not sure what this type of transition is officially called, but…

Jesse Crossen
- 6,945
- 2
- 31
- 32
36
votes
1 answer
Real time line graph with nvd3.js
I am trying to create a real time graph using nvd3.js which would be updated periodically and with the impression that the data is processed in real time.
For now I have been able to create a function which would update the graph periodically but I…

Christopher Chiche
- 15,075
- 9
- 59
- 98
34
votes
8 answers
JavaScript - add transition between display:none and display:block
I am using JavaScript to toggle notification like below.
How can I add transition between display: block and display: none;
I don't want to add an external library like jQuery because I am only going to be using the toggle effect alone.
var btn =…

Abk
- 2,137
- 1
- 23
- 33
32
votes
3 answers
CSS3 Transition to highlight new elements created in JQuery
I want to use a CSS3 color transition to apply a highlight-fading color effect (yellow to transparent) to new elements appended to the markup using JQuery.
CSS
#content div {
background-color:transparent;
-moz-transition:background-color…

Paulaner
- 321
- 1
- 3
- 4
32
votes
2 answers
d3.js how to dynamically add nodes to a tree
I am using a d3.js tree, and would like to add nodes dynamically, rather than pre-loading the entire tree.
How would i modify the following in order to dynamically add additional JSON nodes when a node is clicked? (see link below, and code…

Mike Mike
- 1,125
- 3
- 13
- 19
31
votes
8 answers
overridePendingTransition does not work when FLAG_ACTIVITY_REORDER_TO_FRONT is used
I have two activities in the stack, in order to show them I use FLAG_ACTIVITY_REORDER_TO_FRONT. So far so good, the problem comes when I want to bring the activity with an animation using overridePendingTransition.
Intent i = new…

Daniel
- 311
- 1
- 3
- 3
29
votes
4 answers
Debug CSS animation with Chrome Devtools
Is it possible to view or debug the steps a single element takes when in a transition-css animation?
I'm working with Chrome Dev Tools, but I'm pretty new at it. I googled it and saw something from the timeline, but I don't find the step by step…

FredVDH
- 301
- 1
- 3
- 4
29
votes
5 answers
Clean way to programmatically use CSS transitions from JS?
As the title implies, is there a proper way to set some initial CSS properties (or class) and tell the browser to transition these to another value?
For example (fiddle):
var el = document.querySelector('div'),
st = el.style;
st.opacity =…

Fabrício Matté
- 69,329
- 26
- 129
- 166
28
votes
5 answers
Unbalanced calls to begin/end appearance transitions for UITabBarController
I have an UITabBarController, when initial run, I want to overlay a login view controller but received error.
Unbalanced calls to begin/end appearance transitions for < UITabBarController: 0x863ae00 >.
Below is the code.
-…

ZYiOS
- 5,204
- 3
- 39
- 45
28
votes
8 answers
How can I use UIModalTransitionStylePartialCurl on a UIView that does NOT take up the whole screen?
In Apple's official Maps app for the iPhone, there is a small 'page curl' button in the lower-right corner. When you press it, the map itself peels back to reveal some options. I would like to duplicate this effect in my own app.
I'm trying to use…

caecus314
- 281
- 1
- 3
- 3