Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
12answers
47k views

jQuery How do you get an image to fade in on load?

All I want to do is fade my logo in on the page loading. I am new today to jQuery and I can't managed to fadeIn on load please help. Sorry if this question has already been answered I have had a look ...
4
votes
2answers
5k views

Android - Blinking image using the Alpha fade animation

I've been struggling for a few days on this, finally just decided to ask. It's so simple I've got to be missing something very basic. I have an XML layout page with an image defined. I have two ...
3
votes
1answer
551 views

Fading the start of a sound with Python

I'm a student in a programming class and I just can't get this fading in to work... Right now it's just muting the first few samples of length fade_length... can anyone tell me why it does so so I can ...
3
votes
2answers
457 views

Black border Around Transparent PNG in IE8

I'm experiencing some problemes with a black small border around transparent PNG files..in a jquery slider in IE8.. It works fine in all browsers (including IE6 & 7) but not in IE8. you can see ...
2
votes
2answers
1k views

Jquery, disable / ignore hover event during fade in / out?

I'm trying to figure out if this is possible.. I have an image map that does fade in / fade out based on hovers over certain parts.. the problem is that when the user hovers to a different area ...
2
votes
1answer
3k views

jQuery fade in/out on mouseover?

I have links in the following structure and I would like to know what the jQuery/css should be to hide the <img /> tags and fade them in on mouseover. The idea here is that the HTML ...
2
votes
2answers
3k views

How can I get jQuery load() to complete before fadeOut/fadeIn?

I want to do an AJAX call via jQuery load() and only once it returns, then fadeOut the old content and fadeIn the new content. I want to old content to remain showing until the new content is ...
2
votes
6answers
10k views

jQuery hover : fading in a hidden div while fading out the “default” one

I have two divs (one of them hidden with CSS), which I'm fading in and out in alternance inside a common space, on hover. This is the markup : <div id="wrap"> <div class="image"> ...
1
vote
2answers
256 views

C# Fade-in and fade-out transparency when form is being moved

I have the code to make the form partially transparent when is being moved, but I want to know if it's possible to add fade-in and fade-out effects when I start moving and stop moving the form. EDIT ...
1
vote
1answer
468 views

Ultimate Fade-in Slideshow initially fades in from black, how to change?

I would like to change the colour/image that the Ultimate Fade-in Slideshow fades in from once the images have loaded, currently it is black or another dark colour or an image. See here: link text ...
1
vote
1answer
449 views

image rollover effect in jquery?

here my code- $('.smenu li').mouseover( function(){ var src = $(this).find('a').attr('href'); $('.hbg').css('background-image', 'url(' + src + ')'); }); html code- <div ...
1
vote
1answer
8k views

Jquery - mouse over -> fade in/out // click -> opacity 100% // other click -> opacity 60

Iam working on a website with jquery and thumbnails. When the page is loaded all the thumbnails have to be on 60% of opacity. As soon as you go with your mouse over a thumb it needs to fade to 100%, ...
0
votes
3answers
48 views

How to interrupt/pause an infinitely looping Jquery Function for a content slider?

I have a page where I am cycling through a set of list elements using jquery fadeout() & fadein(). Everything works fine, except I would now like to make it so: the user can click a separate ...
0
votes
3answers
45 views

How to add fade in effect to following js sript?

I have a js script that shows loading image and than loads content into #content div. It works fine, but I cant figure out how to make it so it fades in content once it is loaded? function ...
0
votes
0answers
204 views

Fade out / Fade in of a Button Background Image

I've got a Menu of Buttons. If I scroll in my ScrollView, the Buttons change their Background Image depending on the scroll position. Now I want to have a smoother change of the background. So if I ...
0
votes
2answers
97 views

jQuery Fade in/out toogle method

I am having trouble with an "if and else" statement for fading in and out using a toggle link. I can get the div to fade in, however, I can not seem to get it to fade out. I am somewhat new to if and ...
0
votes
2answers
108 views

Add a fadeIn / fadeOut to table results

I have the following code: <script type="text/javascript"> function filter(phrase, _id) { var words = phrase.value.toLowerCase().split(" "); var table = ...
0
votes
1answer
2k views

Android fade out animation for tablerow

I have a TableRow with a TextView. Here is the xml for it. <TableRow android:layout_height="fill_parent" android:layout_gravity="bottom" android:layout_width="fill_parent" ...
0
votes
5answers
489 views

adding a time delay inside a javascript function for a fade in effect

I'm looking to make a website that slowly fades in to hide the loading of the images. Now I've managed to get some javascript that does the fade in but it starts immediatly when the page loads so you ...
0
votes
3answers
160 views

Fading between images

How can i fade rotate between two images using jQuery? Say for example. <img src="image01.jpg" /> <img src="image02.jpg" /> I like the images to fade in/out between for say 2seconds ...
0
votes
1answer
3k views

jQuery Cycle Plugin: How to preload first images with a loading background gif then fade in Cycle Slideshow?

I'm struggling with this, maybe some of you can help... I have a home page slideshow with large images at www.theoribeiro.com using jQuery Cycle plugin Images are large and sometimes with slow ...
0
votes
2answers
830 views

Create a simple mootools 1.2 tab system

I'm trying to create a very simple tab interface using the mootools 1.2 version. I need to have a fadein-fadeout effect, no sliding or morphing. I've tried to find some demos online but they all refer ...
0
votes
4answers
1k views

How to trigger event upon first visit of website only using jQuery?

Hi I would like the navigation on my website to fade in when visiting my website and remain present (ie. not fade in again) when visiting other pages of the site. Would the best way to achieve this ...
0
votes
1answer
450 views

jQuery Fading Opacity Problem

For a client, I am attempting to get this site to work in IE and other web browsers (currently only works in Safari and Firefox for Mac): http://www.randomscripts.net/think_company_world/main.php I ...
0
votes
1answer
2k views

Attempting to create a quick jQuery drop down menu

am not sure if I'm doing this right, but I'm trying to create a simple drop down menu in jQuery. I basically want a div (with links) to appear once the menu item is hovered over.. The Menu: <ul ...
0
votes
0answers
228 views

fadeIn nested span tag

My problem is the folowing: The string I give back with the ajaxcall and subsequently let it fadein is not fading in completely. The inner span tag with class="message" get's dropped at once. and ...