transition

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 UIModalTransitionStylePartialCurl (Added in SDK 3.2). In terms of its layout, my app re...

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 feature with Mootools http://jsfiddle.net/6bzCS/. Mozilla - will support it in Firefox 4 https://developer.mozilla.org/en/CSS/-moz-transit...

using a viewController to open another instance of the same viewController

I have a MasterViewController.h.m.xib (UIViewController) that is opening a TestDummy.h.m.xib (UIViewController) in the following way: TestDummy *controller = [[TestDummy alloc] initWithNibName:@"TestDummy" bundle:nil]; [scrollView addSubview:controller.view]; I have two buttons in TestDummy: (Open), (Close) and one label: (windowDepth...

How is the black and white to color tansition being accomplished

Hi All, I'm trying to find out how, when hovered over, the photos show their true colours instead of being black and white on this site: http://2010.dconstruct.org/ . I don't think it's a simple matter of having two versions of the image, but I'm really not sure. I'd appreciate any help with it! ...

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: http://wdnuon.blogspot.com/2010/05/implementing-ibooks-page-curling-using.html - (void)deform { Vertex...

Can i add a run time transition to a task node in jbpm v3.2 ?

Hi all, For every task node in a process definition, i want to dynamically (programtically) add a self transition (from and to transition to the same node) to each task node. Can you tell me can this be done as part of JBPM v3.2 and if there are any issues that can crop up if i choose this approach ? ...

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 has three text-shadows (for appearance of depth). I am also using the -webkit-transition rule to change the color of the text-shadow on hover ...

iPhone: part of view gets pushed off screen

Hello, I've implemented two different transition techniques to try with my app, one button for each one. I use presentModalViewController:myView for the first button and CATransition on the second. The ModalView one works but my CATransition has a bug: it slides the entire view a little off screen, as shown in pictures, with a white fr...

Navigation Bar + presentModalViewController

Hi, I have a navigation bar based application, and at one specific point in the app I have a button on the nav bar that should present a new view using a flip transition (essentially taking a user from a tableview to a map view). I'm currently using DetailLocationView *detailLocationView = [DetailLocationView alloc] init]; detailLoca...

Change Navigation Controller Animation Type

I would like to change the transition type of a navigation controller from "slide" to "fade". Any ideas how to make the change? TIA, Jim B ...

Custom Animation Object for Transition in Android?

I want to override the default activity transition in Android with something a bit fancier. What I want to do can't be done with the XML set that one would typically use, so I can't use overridePendingTransition because it only accepts integer references to XML-based animation resources. What I'd like to do instead is create my own obje...

Glitching whilst using CSS transitions/translate on iPad when scrolling the page

Hi all, I've noticed whilst optimising animations for use on iPad using hardware acceleration, I seem to be coming across an issue that I haven't fully been able to resolve. If you are applying webkit transforms such as translate, although the animation runs great, if in the middle of an animation occuring the user scrolls the page, when...

C# smooth object movement

I have all the necessary code to move and click the mouse via C# code, but I don't want to just set the mouse position to X and Y; that will look jerky. Instead, I want to have a smooth transition from point X1, Y1 to point X2, Y2 over Z seconds. Similar to keyframing. I'm looking for a method similar to this: public void TransitionMou...

merging two git repositories, one a git-cvs clone, one git-svn clone

I am using code from a CVS controlled repository (@sourceforge). Instead of using it directly, I was using a git clone of it made by someone else. In my clone I have several modifications. In the meantime the upstream project has switched to SVN (@googlecode). I was able to create an automatically updated git clone of that myself. Now ...

Hidding the title bar on specific layouts that use ViewFlipper, and transitions not working properly.

First off I am a beginner in Android development; I have been doing a lot of research into how to get the various tasks I am trying to complete. I have yet to find any similar issue to this, which is why I am asking it. This is a multipart question. Overview of program and problems: I have a program (for Android 2.1 and higher) that ha...