Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

38
votes
6answers
19k views

Using fadein and append

I am loading JSON data to my page and using appendTo() but I am trying to fade in my results, any ideas? $("#posts").fadeIn(); $(content).appendTo("#posts"); I saw that there is a difference ...
11
votes
6answers
24k views

Fade the background-color of a span tag with JQuery

I'm trying to fade the background-color of a span tag using JQuery to emphasize when a change has occured. I was thinking the code would be someting like the following inside the click handler, but I ...
8
votes
1answer
2k views

Is there a way to disable/edit the fading that a list view has at its edges?

Scrollable views such as the ListView have a fade out of the content along the edges where there is more content in that direction. How can I turn this fading off? I know you can change the ...
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
5answers
2k views

Fade in on mouse movement (like on google.com)

How do I fade in div content on first mouse movement, like on google.com, using javascript? I don't want it to fade out again.
7
votes
4answers
3k views

How do I fade an image in swing?

I've got class which inherits from JPanel with an image on it and i want to set up a little animation to display the panel/image and then fade it out when an event fires. I presumably set up a thread ...
7
votes
4answers
12k views

How to rotate 4 (or more) images, fading between each one?

I have 4 images, which I want to fade between each other in a loop. I have something like the following: <img src="/images/image-1.jpg" id="featureImg1" /> <img src="/images/image-2.jpg" ...
6
votes
2answers
3k views

jQuery Looping Animation pauses each time. How to keep from pausing?

I am trying to cause a block to "pulsate" between 100% opacity and some partially transparent opacity. I want to do this with the functionality that is built into the jQuery core, if possible. I would ...
5
votes
4answers
154 views

How to get this fade and slide effect?

I'm wondering how I could make a fade and slide effect like on: http://www.apple.com/stevejobs/ It's a really cool animation and I'm wondering if this is possible with jQuery? Note: I already know ...
5
votes
4answers
412 views

how to dim your webpage to center your attention on a banner? (dim-bright effects on your webpage)

I was wondering on how this effect is created in certain webpages - On loading the webpage, a banner ad with a close button is displayed as the topmost layer, and the actual webpage is displayed as ...
5
votes
1answer
385 views

jQuery: Color fade

Is it possible to have 2 colors (red, green) and give the percentage of fading. Example: black (#000000) => white (#ffffff) --- Percent: 50% => grey (#808080) Is this maybe possible with jQuery ...
5
votes
5answers
7k views

HTML/CSS - create alpha mask over image

I'd like to create an effect in a site I’m building where an image is masked by an overlay. The overlay should create a “fade out” effect — I don’t actually want anything animated, but the overlay ...
5
votes
5answers
8k views

How to do the image fade-in effect upon scroll (like mashable.com)

I'm wondering about the fade-in effect for images on mashable.com (see http://mashable.com/2009/08/14/google-android-logo-remixes/ for example) As you scroll to the image, it fades in. It's not ...
5
votes
1answer
4k views

jQuery Tab Fade Animation

I have implemented jQuery tabs and am using the opacity technique to fade one tab out and then fade another in. I would like to have the second image fade over the first and then hide the first image. ...
5
votes
6answers
8k views

JQuery help - animate background color

Using JQuery, what I want to do is create a function that when I call the function, it will fade the background color of my "#page" DIV from the CSS defined background color to yellow then back to the ...
5
votes
2answers
4k views

How to fade to display: inline-block

In my page I have a bunch (about 30) dom nodes that should be added invisible, and fade in when they are fully loaded. The elements need a display: inline-block style. I would like to use the jquery ...
4
votes
2answers
342 views

Jquery crossfade without a plugin

a lot of stuff here pointing to plugins to do crossfades and stuff, but none really fit my needs. i have 2 things on my page: A large image, a div containing 3 or four small thumbnails when a ...
4
votes
4answers
364 views

Is there a jQuery plugin for fading textbox hints?

I was wondering whether there is a jQuery plugin available which can show hints in a textbox when it is empty. What I found was: http://remysharp.com/2007/01/25/jquery-tutorial-text-box-hints/. ...
4
votes
5answers
478 views

jQuery: interrupting fadeIn()/fadeOut()

Let's say I've called $element.fadeIn(200). 100 ms later, something happens on that page and I want to interrupt that fade and immediately fadeOut(). How can I do this? If you call calling ...
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
2answers
1k views

Fade in/Fade out for MAAttachedWindow

I'm using Matt Gemmell's MAAttachedWindow (http://mattgemmell.com/source) with an NSStatusItem to display a custom view in the menu bar. I'm confused as to how to get it to fade in and fade out. ...
4
votes
7answers
3k views

Problem with jQuery's fade in/out in Firefox

I already asked here with no luck, but feel free to read it: http://groups.google.com/group/jquery-en/browse%5Fthread/thread/fdf7a584b30d4bb9 Hmm check out my site: http://www.crtaci.info/ on ...
4
votes
3answers
8k views

jquery: fade in image after image

I have a page with 10 images in and I want to fade them in one after another once the image has been downloaded. how can I detect the image is loaded and ready to be displayed? and should I loop ...
4
votes
5answers
2k views

Calculate a color fade

Given two colors and n steps, how can one calculate n colors including the two given colors that create a fade effect? If possible pseudo-code is preferred but this will probably be implemented in ...
4
votes
7answers
7k views

Make a <div> fade away nicely after a given amount of time

What is the best way to make a fade away after a given amount of time (without using some of the javascript libraries available). I'm looking for a very lightweight solution here not requiring a huge ...
3
votes
5answers
68 views

Stopping jQuery from doing its thing?

I have this code. $(document).ready(function() { $('#box').hide(); $(window).bind('scroll', function(){ if($(this).scrollTop() > 200) { $("#box").fadeIn(300); } else { ...
3
votes
3answers
148 views

How to hide a Div when the scroll bar is moving with jQuery?

I just want the #menu to fade when the scroll bar is moving to provide a less cluttered interface. Is there code that would allow this? I guess basically what I'm looking for is how to grab the ...
3
votes
4answers
253 views

How to fade in content when hovering over a link?

I'm trying to make content fade in or appear on my blog when the mouse is hovered over a link. For example, on my blog http://www.ricardopomalaza.com/, if someone were to hover their mouse over one of ...
3
votes
2answers
1k views

How to add a cross fade to UI tabs?

Hi I copy question from http://forum.jquery.com/topic/how-to-add-a-cross-fade-to-ui-tabs, because I have same question. Hi all I have set up a tabbed interface using standard UI tab code. ...
3
votes
6answers
616 views

Fade edges of div with jQuery

How can I fade edges of a div with jQuery? Think of a carousel with images inside that slides horizontally. How can I fade out the left and right sides so that images near the edges disappears ...
3
votes
1answer
424 views

Any HTML tags inside of tooltip cause basic tooltip to close on hover

I'm new to jQuery, in fact any kind of AJAX / JavsScript (although not new to PHP, xHTML and CSS). Anyway I'm trying to achieve a "tooltip-like" effect, where I can hover over a div...the new div ...
3
votes
1answer
646 views

jquery 2 fades complete at the same time

just another quick one: I am noticing differences with fadeOut dependant on whether this is a target. Here's my structure. I have rows of data on my page, and each row has two icons. One is an ...
3
votes
1answer
893 views

How do I replace a modal view controller?

I'm using a modal view controller to allow a user to select an address book entry and email address. The ABPeoplePickerNavigationController object is displayed via presentModalViewController:animated: ...
3
votes
2answers
950 views

jQuery fade effects and Ajax login

I'm using the following piece of code to login a user via Ajax. //Capture the login_ajax form $("#login_ajax").submit(function () { //First we fade out the header-login div ...
3
votes
4answers
6k views

jQuery cross fading two images on a loop!

I am having trouble working out how to get a simple fade in fade out loop to work. I am pretty new to jQuery as you can maybe tell. I have had a go at it but now it’s taking too long to work out so I ...
3
votes
1answer
1k views

Image Replacement (gallery style) with Fade-In's / Fade-Out's

I'm sure you've all seen this demo of image replacement using this : $("#largeImg").attr({ src: largePath, alt: largeAlt }); http://www.webdesignerwall.com/demo/jquery/img-replacement.html So, ...
3
votes
4answers
3k views

jQuery randomly fadeIn images

I have a container with a lot of small images. <div id="container"> <img src="1.jpg" /> <img src="2.jpg" /> <img src="3.jpg" /> ... <img src="100.jpg" /> ...
3
votes
3answers
425 views

How would I make a control that flashes/fades on a mouse click? (Windows)

When a user clicks in certain places in my control, I want to change the color of some rows and columns in my grid, then fade it back to the normal color, within say 500ms or so. I haven't decided ...
2
votes
2answers
25 views

why fade in/out only working once?

I know it is a very idiot problem but i'm trying to make a div show and hide on mouseover but when mouse hover the div it only works one time, then the div fadeout and dont fade in again. Am I missing ...
2
votes
2answers
53 views

Animating a table with jQuery

I asked a question yesterday on here and got some awsome help, but I need more help concerning more or less the same, only a bit different. This is my old thread. So ye, I made this and the idea is ...
2
votes
1answer
50 views

Content fade in on rollover

I am using this image effect for my icon links http://bavotasan.com/2009/creating-a-jquery-mouseover-fade-effect/ What I plan is, that when you hover over an icon (which is the image effect above) it ...
2
votes
3answers
110 views

jQuery fadeToggle()

I want to use jQuery's fadeToggle() function. I have a hidden div and when I click on a link, then I want to call fadeToggle() that the div fades in and after another click fades out. The clue is, ...
2
votes
3answers
164 views

How to use jQuery to fade in/out li a:hover css background-color?

I have been struggling with a problem for a couple of days now with no success so decided to sign up here and see if some kind soul can help me out. Fingers crossed! I am trying to animate (fade ...
2
votes
5answers
97 views

jQuery - correct way to wait for fade to finish

I have a problem where I want to fade out an image, then move the image to an empty <li> container. However, the image doesn't fade, instead it just seems like the fade is being overridden by ...
2
votes
4answers
44 views

how to fade the toggle so the transition looks softer

How could i make the toggle transition look softer? I'm "toggling" 2 divs: $(document).ready(function(){ var tweet = $("ul.tweets li"); tweet.hover(function(){ ...
2
votes
1answer
71 views

CSS 3 fade animation on hover - issue in Opera

So I have these rules: a{ background-color: transparent; -webkit-transition: background-color .3s ease-in-out; -moz-transition: background-color .3s ease-in-out; -o-transition: ...
2
votes
2answers
42 views

using jquery to show updates

I am having some 8 products/services and i want to show updates based on the users who have used the services like Product 1 smith used this service 8 hours ago Product 2 neo used this service 10 ...
2
votes
2answers
106 views

Create Jquery Drop down using Divs and maintaing dual hover

What I'm trying to do is to fade in a div by rolling over a link. Once your mouse is over the link, you're able to mouse around the div that just faded in and you can click links inside the div. ...
2
votes
2answers
88 views

Fade image position

I have a list like this: <ul> <li><a href="#"><img src="/userfiles/test.png" alt="" /></a></li> <li><a href="#"><img ...
2
votes
1answer
334 views

ffmpeg fade filter installed but not working?

I have php 5.1.6 running on my CentOS 5 server running Apache 2.2.3 I installed ffmpeg library and my aim is to covert a set of images into a slideshow with the fadein/fade out effect per image swap. ...

1 2 3 4 5 9