Questions tagged [transition]

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.

5240 questions
19
votes
2 answers

Android developer moving to iOS - What do I need to know?

I'm interested in starting developing on the iOS platform, after a couple of years of Android work. What are the main things that are likely to trip me up when designing/coding for iOS instead of Android?
fredley
  • 32,953
  • 42
  • 145
  • 236
19
votes
2 answers

Angular Animation: Page transition without style `position: absolute`?

Purpose: I want to add a nice transition effect when click from one page to another I tried lots of solution online, including: Angular 2 — Animating Router transitions Page transition animations with Angular 2.0 router and component interface…
Alex G
  • 1,321
  • 1
  • 24
  • 31
19
votes
1 answer

Change and transition dataset in chord diagram with D3

I'm working on a chord diagram using D3. I am trying to make it so that when a user clicks on a link the dataset will change to another predefined dataset. I've looked at both http://exposedata.com/tutorial/chord/latest.html and…
shaunjacobsen
  • 639
  • 1
  • 8
  • 20
19
votes
13 answers

C: Good Habits re: Transitioning to C++

I've been learning C at Varsity for just shy of 2months now, and next year we'll be moving on to C++. Are there any habits I should get into with my C programming which will aid a transition to C++ in the future, or is it best to think of them…
Ande Turner
  • 7,096
  • 19
  • 80
  • 107
19
votes
10 answers

UIPageViewController transition 'Unbalanced calls to begin/end appearance transitions for '

When I navigate through UIPageViewController faster than its transition animation I am getting 'Unbalanced calls to begin/end appearance transitions for ' and one of the two views in landscape isn't shown until I try to turn…
Basem Saadawy
  • 1,808
  • 2
  • 20
  • 30
18
votes
3 answers

Is there a way to perform svelte transition without a if block?

{#if !visible} { playerScore = e.detail.score; }} /> {/if} My question is can I use the transition without…
Manan Joshi
  • 629
  • 1
  • 6
  • 17
18
votes
4 answers

VisualStateManager not working as advertised

The following issue has been plaguing me for days now, but I've only just been able to distill it down to its simplest form. Consider the following XAML:
Kent Boogaart
  • 175,602
  • 35
  • 392
  • 393
18
votes
1 answer

How to disable the navigation bar slide animation when going fullscreen?

I have an activity that goes to another full screen activity. However, when transitioning from this activity to my full screen activity, the navigation bar slides down instead of disappearing instantly. I've inflated a full-screen window in the…
Kyle
  • 598
  • 1
  • 7
  • 25
18
votes
1 answer

How to add a CSS3 transition to a child element when the parent is hovered

CSS Transition
Soma
  • 339
  • 1
  • 3
  • 14
18
votes
1 answer

Changing number displayed as svg text gradually, with D3 transition

I am looking for a simple way to gradually change the value of a number displayed as svg text with d3. var quality = [0.06, 14]; // qSVG is just the main svg element qSVG.selectAll(".txt") .data(quality) .enter() .append("text") …
zbug
  • 1,043
  • 1
  • 8
  • 19
17
votes
2 answers

Get current CSS property value during a transition in JavaScript

I would like to be able to read the value of a CSS property in the middle of a transition before it is fully executed. Is that possible? So if during a transition from 0% to 100%, I were to check halfway through, could I see it at 50%?
TimE
  • 2,800
  • 1
  • 27
  • 25
17
votes
2 answers

Material UI transition out and in on single button click

In the Material UI Transitions doc, there are examples where a button triggers a transition. I have a case where a button triggers a state change and I want the former data to transition out and then the new data to transition in. The only way I…
Scotty H
  • 6,432
  • 6
  • 41
  • 94
17
votes
1 answer

Android bug in Slide Activity transition

So in trying to use the Slide Activity transition but with a different gravity, the app crashes on using Gravity.START, using this: getWindow().setExitTransition(new Slide(Gravity.START)); and I get this error: IllegalArgumentException: Invalid…
StackOverflowMaster
  • 3,478
  • 3
  • 18
  • 19
17
votes
3 answers

Is there any way to have a transition effect when changing the innerHTML?

I'm trying to add a transition effect when switching between projects. This code currently works, but I'd rather have something like having a fade effect when switching projects. Is this possible? Here is a jsfiddle if that helps at all. Thanks! My…
Saad
  • 49,729
  • 21
  • 73
  • 112
17
votes
3 answers

How to cancel scheduled transition in d3?

Transition Code, d3.select('chart').select('svg') .selectAll("circle") .data(sampleData) .enter().append('circle') .each(function (d,i) { d3.select(this) .transition() …
SunnyShah
  • 28,934
  • 30
  • 90
  • 137