transition

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. ...

Colour transition JavaScript

I've noticed a site that seems to have a very nice colour transition effect on the background. When a link is pressed the background changes colour, however it doesn't seem instant. A transition seems to take place.. http://fuelbrandinc.com/#/about I was wondering if anyone had any idea how to replicate this functionality? Thanks, ...

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 500ms; } JavaScript: $("#element").css("-webkit-transform", "translateX(" + value + "px)"); Right before the transition takes place, ther...

AS2 - Maths Transition Help

Hi all, im making a drop down menu in flash and i want it to slide down. At the moment im using a linear slide ( _y += 5, _y -= 5) etc. I know there are other types of transitions like exponential and the like, how would i go about implementing them? I also remember there was a website once that showed all sorts of slide animations in ...

jquery image resize transition onMouseOver

Hello, just wondering if there is any jquery plugin that when your mouse is over an image, this image will increase in size and if your mouse is out of the image it'll decrease in size all this as a smooth transition. thanks! ...

how to animate transition from one view to another when using data templates to associate view with view-model.

Hello everybody, i will post my source code i have at the moment and explain my problem after that. this is the window where i want the transition to happen <Window x:Class="MyApp.MainView" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Title="MyApp" Height="600...

Animation transition between activities using FLAG_ACTIVITY_CLEAR_TOP

Hey hey! 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); intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP); this.startActivity(intent); As I noticed that the transition was still a left to right animation, does someon...

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? ...

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 { -webkit-animation-name: flippingfrom; -webkit-animation-duration: 1.5s; } @-webkit-keyframes flippingto { from { -webkit-transform: rotateY(180de...

Jquery, Background color transition loop

Hey there, I am looking to animate the background-color so it cycles through varios predefined colors in an endless loop. I am not a programmer and new to jquery, if someone could help me figure this out I would really appreciate ist thx! ...

Is it possible to set different duration/delay for transform options?

I want to set several transform options for my html object but with different duration and delay. If i try to use something like that: -webkit-transition: -webkit-transform, opacity; -webkit-transform: rotate(180deg) scale(2); -webkit-transition-duration: 2000ms, 6000ms; -webkit-transition-delay: 0ms, 6000ms; Then i will have diffe...

android css transitions stop animating

Has anyone else run into an issue where a CSS transition stops animating? I am trying to animate an element scrolling it left or right by applying -webkit-transition: left 500s linear; it works fine at first, but if you make the element scroll back and forth from repeated user actions, at some point the transition just stops animating....

Jquery fadeIn/fadeOut animation issues.

I am using Jquery FadeIn/FaeOut to show and hide content on my page. Like so: $('.subnav_company').click(function(){ $('.aboutcontent').fadeOut('slow'); $('.company').fadeIn('slow'); }); My problem is that because the div '.company' is positioned below '.aboutcontent' whe...

NavigationController: Replacing a pushed UIViewController with another one

Hello, for a better understanding of the following question, here's a little drawing that illustrates the structure of my App: http://grab.by/6jXh So, basically I have a navigation-based App that uses NavigationController's "pushViewController" method to show Views A and B. What I'd like to accomplish is to make a transition from view...

jQuery Cycle: How to change transition effect on a running slideshow

Hi folks, i'm using the before: option of the jQuery Cycle plugin to determine whether the user is moving to the left or right through the slideshow, and i'd like to animate accordingly (scrollLeft, scrollRight). Unfortunately, I cannot find how to alter the plugin's options (the transition effect) while it's running. Any ideas? ...

How do I close the AdBannerView full screen popup, when using a flip view transition?

I am performing a flip transition between two views and in the main viewcontroller that contains the two flipping views, I want to place an AdBannerView. I create the AdBannerView, and when I flip to the second view I want it to display. This is all working fine, I can click the advertisement and the full screen ad will display, but wh...

How do I pause this JQuery slider plugin after all images are displayed?

I first used the following to give my logo an effect on load: $(document).ready(function() { $('#logo').delay(1000).slideDown('slow'); }); The effect was too simple, so I decided to use an effect similar to those used by Nivo Slider or Coin Slider, by transitioning from a white image to the logo. The problem I have is the I can't ...

How would you optimize this code for a jquery 4 slide endless crossfading slideshow?

I have created a 4 image endless slideshow, which works more or less well (code below) crossfading each image and pausing for a short period. Then repeating in an endless loop. But I noticed the timing of the transitions is not always the same. I am also not sure if I have gone about this in the best way by calling the slides() function ...

UIViewAnimationTransitionCurlUp mirror

Hee, Does anybody know how to mirror the UIViewAnimationTransitionCurlUp animation? It slightly curls to the left when it curls up, i want to change that to the right. Thanks ...

jQuery UI: Show transition on Safari

Hey, I'm using jQuery UI to make transitions between pages on my website. It works great on Firefox, but on Safari this function slides the div to the extreme right, then it goes back to the center of the screen. Note that it's not like a bounce effect. Does anyone know a good solution for that? Thanks! ...