Tagged Questions
The transition tag has no wiki summary.
25
votes
5answers
1k views
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?
20
votes
6answers
4k views
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 ...
19
votes
17answers
2k views
Just Got Hired at a New Software Shop, Now What?
I was recently hired at a software shop. This is my first programming related job and I was wondering what things I need to do to get into the groove of the new job as quickly as possible.
What tips ...
15
votes
13answers
1k views
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++ ...
13
votes
1answer
1k views
How to enable -webkit-animation/transition-property for :before and :after pseudo elements?
How to enable -webkit-animation for :before and :after pseudo elements?
You can see in http://jsfiddle.net/4rnsx/ that it is not working for :before and :after.
And here I am trying to enable this ...
13
votes
5answers
16k views
Activity transition in Android
Is it possible to define the transition between two activities for Android 1.5 and better? I would like an activity to fade in.
12
votes
2answers
345 views
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 ...
12
votes
3answers
9k views
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 ...
9
votes
2answers
5k views
Unbalanced calls to begin/end appearance transitions for <FirstViewController: 0x2a2c00>
I have this problem when I simulate my app, its not an error or a warning but it appears in my console, has anyone ever experienced this before?
9
votes
2answers
5k views
CSS3 transition events
Are there any events fired by an element to check wether a css3 transition has started or end?
9
votes
1answer
4k views
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 ...
9
votes
9answers
482 views
What is the best way to go from Java/C# to C++?
At my university most of my classes have been in Java. I have also recently learned C# (and the Visual Studio environment) at a summer internship. Now I'm taking an Intro to Computer Graphics class ...
8
votes
2answers
7k views
Can I change the Android startActivity() transition animation?
I am starting an activity and would rather have a alpha fade-in for startActivity(), and a fade-out for the finish(). How can I go about this in the Android SDK?
7
votes
6answers
734 views
Smooth transition between two (class) and (class):hover
Is there a script/way, that makes normal CSS :hover more smooth?
Idea would be, that you got two classes maybe with gradient backgrounds, and the script would smoothly swap the classes. So the ...
7
votes
2answers
4k views
Animation transition between activities using FLAG_ACTIVITY_CLEAR_TOP
In my android app, I'm making a method that pop all activities and bring up the first activity.
I use this code:
Intent intent = new Intent(this, MMConnection.class);
...
7
votes
6answers
10k views
Is the iPad “page turn” transition included in the SDK?
Is there a "page turn" transition included in the iPad SDK that I can use? Or is that all coded by hand with core graphics?
7
votes
4answers
3k views
Partial page curl animation
I have a working transition using UIViewAnimationTransitionCurlUp however, I would like the animation to stop halfway through, much like the Maps application...Any thoughts on how to achieve this?
7
votes
4answers
13k views
iPhone Curl Left and Curl Right transitions
I am looking for a way to do a UIViewAnimationTransitionCurlUp or UIViewAnimationTransitionCurlDown transition on the iPhone but instead of top to bottom, do it from the left to right (or top/bottom ...
7
votes
6answers
4k views
From PHP to Objective-C
Being a pretty experienced PHP developer, and having a fair knowledge of C (Wrote a distributed computing experiment with 16 of my Dad's NEC microcontrollers), I'd like to make the move to Objective-C ...
7
votes
6answers
2k views
Eclipse for IntelliJ Idea Users
I have a coworker who is looking to switch from InteilliJ Idea to Eclipse, and is concerned about not knowing the Eclipse set of commands.
I was wondering - would anyone have a link to keyboard ...
6
votes
1answer
54 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
1answer
148 views
How to access state during transitions in Akka FSM
I am using Akka FSM for handling state in my Actor. I want some actions to be performed every time a transition to a certain state occurs, no matter which state the transition was made from. After ...
6
votes
4answers
986 views
JavaScript shrinking/growing circle transition
My first question here. :)
I'm looking for a transitions between two images where the image first shrinks in a circle shape and then the circle grows again containing the other image. It's hard to ...
6
votes
5answers
5k views
Prevent flicker on webkit-transition of webkit-transform
For some reason, right before my animation of the webkit-transform property occurs, there is a slight flicker. Here is what I am doing:
CSS:
#element {
-webkit-transition: -webkit-transform ...
6
votes
1answer
2k views
Activating Webkit CSS3 animation using Javascript
I am looking to use Webkit CSS3 to move a absolutely positioned DIV from one location to another on the screen when a button is pressed, by changing its left and right CSS properties. However, all the ...
6
votes
3answers
3k views
Flipping UIViews From Top / Bottom
I'm well aware that there are only two available UIView transitions, UIViewAnimationTransitionFlipFromLeft and UIViewAnimationTransitionFlipFromRight. I'm wondering if there is anyway that I can ...
5
votes
2answers
100 views
Why are [my] CSS3/jQuery transitions so imperfectly smooth, and how do I make them more smooth?
As much as I've searched for information about this all over the internet, I can't find anything about it, so I've come here for help.
So here's a distilled version of a project i've been working ...
5
votes
3answers
49 views
CSS3 Translate across an Arc
Is it at all possible with current CSS3 to translate an object (specifically a DIV) along an arc or curve? Here's an image to help illustrate.
5
votes
2answers
566 views
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 ...
5
votes
0answers
82 views
What should I read when returning to C++ (from Java)? [closed]
I am working with Java at my current day job. When I learned programming, I learned C++, but haven't touched it (or had to) since 2002. I don't even remember how to do the simplest of things.
Lately, ...
5
votes
1answer
245 views
iPhone: How to do kCATransitionMoveIn without the fade effect
I am doing a transition of views with type as kCATransitionMoveIn and subtype as kCATransitionFromRight.
This works fine with the new view fading in as it comes from right and old view fading out. ...
5
votes
3answers
139 views
Transition to C++0x from C++98
As someone who hasn't followed the C++0x - now C++1x - story and developments closely, I am considering that it is nearing the time when I need to come up to speed with the 'released' version. I also ...
5
votes
7answers
1k views
should I switch from .Net to Java? [closed]
During my 4.5 years of experience in software development I have worked on .Net for 2.5 yrs
then next 2 yrs on XUL/Javascript(Thunderbird addons development)....and my current employer needs me to ...
5
votes
16answers
399 views
how to transition from c# to python?
i feel like i'm going back to the stone age.
how do i relearn to develop without intellisense (pydev intellisense doesn't count).. in general, how does one successfully leave the comfort of visual ...
5
votes
4answers
630 views
Understanding C++ compilers from a Java / C# perspective
I'm a moderately experienced Java / C# programmer, and I've recently started learning C++. The problem is, I'm having trouble understanding how to structure the various header and code files. This ...
4
votes
3answers
109 views
Should I choose cloud?
I'm about to start development on a project with very uncertain load/traffic specifics. When it will be released there will certainly be very low load that can easily be handled by a single desktop ...
4
votes
1answer
452 views
Android No Animation When Transitioning From a Portrait Activity to a Landscape Activity
I have Activity A which is set to run in portrait orientation (android:screenOrientation="portrait" set on this activity in the manifest). This activity opens to Activity B on a button click. Activity ...
4
votes
2answers
165 views
jQuery app problem. Is this a glitch or incorrect coding?
I've got into a rather simple, yet annoying problem.
I'm trying to create a kind of "pick a date" calendar, but in carousel style, just like those image sliders.
Once the user clicks on a date, the ...
4
votes
1answer
312 views
transitionFromView does the right thing, BUT without animation. Why?
Here's the code:
[UIView transitionFromView:mapView toView:tableView duration:5.0 options:UIViewAnimationOptionShowHideTransitionViews|UIViewAnimationTransitionFlipFromLeft completion:NULL];
After ...
4
votes
2answers
1k views
Webkit choking on rendering multiple text-shadow & box-shadow values with webkit-transition
CSS3 -webkit-transition is choking on multiple box-shadow values and text-shadow values. (Chrome & Safari)
More specifically, I have two screnarios...
(1) I have text has a document heading that ...
4
votes
1answer
3k views
How do I stop -webkit-animation from reverting? Or make -webkit-transition animate in multiple steps
I want to make a two-step transition for flipping the screen:
My code is like:
.flipto {
-webkit-animation-name: flippingto;
-webkit-animation-duration: 1.5s;
}
.flipfrom {
...
4
votes
3answers
21k views
CSS3 Fade Effect
a {
float: left;
width: 32px;
height: 32px;
text-align: left;
text-indent:-9999px;
background: url('../img/button.png') no-repeat 0 0;
-webkit-transition: background 300ms ...
4
votes
4answers
72 views
Transitioning from the web to the desktop
Can anyone recommend a language, library, framework or book which focuses on GUI programming from the perspective of a web developer?
I have experience in web development, for example ...
4
votes
2answers
128 views
Any advice for a PM wanting to go back to development
I have been an interactive project manager for about 7 years now and considering going back to my first passion which was HTML. As a producer I am up to date on how technology has progressed in the 7 ...
4
votes
2answers
8k views
how to implement an iPhone view transition animation with both flipping and scaling?
how can I implement the animation we see in the iPhone Music app's coverflow screen? when you click on a small view, it flips and scales up to another view? how can I do this? I can use core animation ...
4
votes
7answers
408 views
Transitioning from Java to C and then C++?
Currently I am working with Java and its object oriented-design aspects (I also work with PHP/MySQL a lot). I don't implement it on the web; I just use it for designing programs for general purposes. ...
3
votes
7answers
168 views
Pointer alternative in C# for a C++ Programmer
I'm primarily a C++ coder and haven't touched c# in a few years (so, forgive me if I'm asking a question which may be a brain fart in my part).
Background info:
I'm writing a file organizing utility ...
3
votes
1answer
84 views
jQuery mobile data-page='content' ONLY transition
I am trying to develop an iPhone app using PhoneGap and jQuery Mobile. This app has a Fixed Footer.
The main problem I'm facing right now is that the built-in page transition changes THE WHOLE PAGE, ...
3
votes
2answers
88 views
How to render UIView into 2 parts
I am trying to develop transition effect, when one view splits into 2 parts with upper part animated upwards and lower part animated downwards to revel the view behind it.
I am using UIView and ...
3
votes
1answer
101 views
javascript-triggered transitions with opacity and visibility in Safari
I'm using the following code.
By clicking on div id="popUpPane", the div and it's childs should appear and slowly fade in.
By clicking on the div again, it should slowly fade out and then disappear.
...