effects

how to use rich:effect with a4j:include

hello i've got this jsf code <f:view> <rich:page pageTitle="My Page" markupType="xhtml"> ... <rich:panel id="content"> <a4j:include viewId="#{MyBacking.viewId}" /> </rich:panel> and after trying a number of different ways, I've still not managed to place the following correctly in my code: <rich:effect...

hideEffect not triggered when component visible property set false programmatically

In Flex I've got a component, which is based on a Canvas. It looks like this (I removed the <mx:Script> for better reading): <mx:Canvas verticalScrollPolicy="off" showEffect="showFX" hideEffect="hideFX" horizontalScrollPolicy="off" creationComplete="doComplete()" xmlns:mx="http://www.adobe.com/2006/mxml" width="63" height="63"> <mx:F...

Turning page effect with html content, not just images! Using jQuery

I have a web page and I want to add a nice turning page effect. I have seen lots of jQuery plugins but I had some issues and dislikes. This is what I want: While the animation is running, I have to be able to see the content in the turning page. I don't want just to slide the content. I need something that looks like a book page tur...

flash turning page effect

I have a html coded web page and I need to add a turning page effect to it. I tryed several jQuery effects but none of them were good enough. I´m thinking of using a transparented-background flash movie to get the effect, but I need to play and stop the flash movie from the html code. I know how to show or hide it, but can I play it w...

Blink/Flash effect or animation in gwt

Hi, I'm building an web intra-net application which has the need for a flashing/blinking button (this has been discussed in depth and is our design decision so please do not lecture me about it). Our UI framework is GWT. Currently in the prototype this effect is achieved be scheduling a timer which adds or removes a css style thus creati...

How to display running counter in Javascript?

I have a table cell that contains a numerical value. When changing the value, I want to create an effect where the counter moves up (or down) in 100 steps until reaching the new value. I've tried something like the following (with the help of jQuery): function update(element,newValue) { var oldValue = parseFloat($(element).text()...

How would a 'fading touch trail' effect be implemented on the iPhone?

I'm wondering about how you would implement an effect similar to this one implemented in flash. It would just be a black screen which, when the user touches and drags over it, produces an effect similar to the one seen in the flash movie. What is this effect called? Do you have a better example? One of my biggest problems is articulatin...

How can I execute multiple, simultaneous jquery effects?

I am animating some error/validation elements on a page. I want them to bounce and be highlighted, but at the same time if possible. Here's what I'm currently doing: var els = $(".errorMsg"); els.effect("bounce", {times: 5}, 100); els.effect("highlight", {color: "#ffb0aa"}, 300); This causes the elements to first bounce, and THEN be...

TemplateBinding doesn't bind to effect's property?

Imagine a control named Testko like this: public class Testko: Control { public static readonly DependencyProperty TestValueProperty; static Testko() { DefaultStyleKeyProperty.OverrideMetadata(typeof(Testko), new FrameworkPropertyMetadata(typeof(Testko))); TestValueProperty = Dependen...

JavaScript/jQuery: Follow path over page

I need to make an animated gif 'fly over a page and follow a path. I'm thinking of using jQuery but would I be right in thinking the only way to do it is manually calculating the percentage of width/height where the shape layer should be placed, then using absolute positioning is the only way to do this? I know there are some amazing jQu...

jQuery not taking effect immediately.

Is there any reason for my jQuery effects not to be taking effect immediately? I have jQuery hover fade effects, but then I also have CSS rollovers as backups for anyone who has javascript disabled. What happens is when you load a page and roll over a link, you get the CSS effect, but any time after that, you get the nice, smooth jQuery ...

search results filter effects - flex

I've created a search with a couple of comboboxes that allow users to filter their search results. The results are currently using a TileList & itemRenderer to display, and now I'd like to add an animation effect when the user filters their results. I know that you can use the itemsChangeEffect to create an animation effect when the us...

actionscript3: reflect-class applied on rotationY

Hi, I'm using a class which applies a visual reflection-effect to defined movieclips. I use a reflection-class from here: link to source. It works like a charm except when I apply a rotation to the movieclip. In my case the reflection is still visible but only a part of it. What am I doing wrong? How could I pass/include the rotation to ...

How to drill down with jQuery?

I'm new to jQuery so sorry if this sounds stupid but I'm having truble drilling down to other elemnts. Paticularly I want to fade in the .menu li a:hover class with jquery. CSS .menu { padding:0; margin:0; list-style:none; } .menu li { float:left; margin-left:1px; } .menu li a { display:block; height:44px; ...

Minimize window effect of OS X on the iPhone - Objective-C

Hi everyone, I would like to imitate the minimize window effect of OS X on the UIView's iPhone... I was thinking about making two animations: the first one extend and distort the view and the second one reduce the view! What do you think? My problem is to distort the view! Do you have any idea how I could make the whole thing? Thanks ...

Remove filter attribute after jQuery UI dialog is finished opening

Using jQuery UI 1.8rc3 combined with the new jquery.effects.fade.js code, I've been able to finally apply fade-in and fade-out effects to opening the UI Dialog widgets. Hooray! $dialog.dialog({ show: { effect: "fade", options: {}, speed: 150 } } This works great - unfortunately, there's the known IE7 & 8 bug where the ClearTy...

How to do visual effects for iPhone? (Plasma / Lava like)

Hi, I need to create an animated Plasma/Lava like effect, that resembles this image: http://dl.dropbox.com/u/1977230/example.png but slightly animated. I have absolutely no idea how to actually do those kind of effects on the iPhone. This would have to run as an UIView background, with some elements on top. Would that be feasible? A...

Is the Vista/Win7 aero effect included in WPF?

Can I use that effect on my controls just like the BlurEffect? If it's not available, is there a way to "acquire" it? Perhaps via the Reflector? ...

Light effect with image magick

Hello, I'm using ImageMagick to resize an image to a smaller size gif. In this process I'm trying to give the image a light effect, not a side-light, just like a shiny look all over. Not a good comparison but for a better understanding think of an image seen in a old screen or an image seen in glossy monitor - I'm trying to enhance the ...

ActionScript Move MovieClip Effects

Hi all. I have a movieclip. Its current y is 0, and i want to move it to y 100 How im currently doing it is onenterframe { Y += 2 } how would i do it that it starts off slow and ends slow but speeds up in the middle? ...