Questions tagged [fadeout]

The fadeOut() method gradually changes the opacity, for selected elements, from visible to hidden (fading effect).

Hide the matched elements by fading them to transparent.

Description:

.fadeOut( [duration] [, callback] )

where,
duration A string or number determining how long the animation will run.
callback A function to call once the animation is complete.

jQuery Fadeout Documentation

1461 questions
11
votes
5 answers

SpriteKit: fade out SKNode - children shines through

I have a SKSpriteNode which I fade out with baseNode.runAction(SKAction.fadeOutWithDuration(0.5)) The sprite has one Child. Also a SKSpriteNode. (The red block in the image) While the baseNode fades out there is the contour of die child node. What…
Jonas Ester
  • 505
  • 4
  • 18
10
votes
2 answers

How to: javascript fade in fade out text

First of all: I looked through other posts on stackoverflow and none of them had the information I was looking for. Second: I'm new to programming ;) I want to have a div on my website that fades in and fades out text. I've seen this on a few web…
Keith Groben
  • 301
  • 2
  • 3
  • 15
10
votes
1 answer

jquery make div repeatedly fade in and out

hello i have a series of divs created in a for loop like so: var myDiv ='#bannerHolder' var fib_str = '1, 2, 3, 5, 8, 13, 21, 1, 2, 3, 5, 8, 13, 21, 1, 2, 3, 5, 8, 13, 21, 1, 2, 3, 5, 8, 13' var widths_str = '33px, 31px, 35px, 9px,…
Dizzy Bryan High
  • 1,827
  • 9
  • 33
  • 57
10
votes
3 answers

Android - Fadeout animation for splash screen

I want to add fadeout animation for my splash screen, that is while closing the splash screen I want to bring the fadeout animation effect. Here are the codes which I have tried. overridePendingTransition(R.anim.fade_in, R.anim.fade_out); But the…
SWDeveloper
  • 1,539
  • 5
  • 17
  • 20
10
votes
3 answers

jQuery Innerfade - fading weirdly on IE7

I'm wrapping up a new site, http://architect.sitesbyjoe.com and I'm using the innerfade plugin on the site's homepage. For some reason, the fading is slow and choppy. The only other thing JavaScript-wise is the Fancy Zoom, but I've already removed…
sitesbyjoe
  • 1,831
  • 14
  • 21
10
votes
3 answers

Fadeout + empty a div, and then put new content in

What is a good way to fadeout the content of a div, but keeping the div ready for new content? With $('#info').html('').fadeOut(500); or $('#info').fadeOut(500).html('').show(); The div content just disappears, and new content does not show With …
mowgli
  • 2,653
  • 2
  • 28
  • 58
9
votes
1 answer

Fading out a whole page with jquery

So, I'm attempting to fade the page out when a user goes to another section of my website. After reading a bit on stack overflow, I have written the following code. But it just seems messy/ugly. Is there a proper way to fade out a webpage, or is it…
Catlard
  • 725
  • 6
  • 12
  • 27
8
votes
2 answers

FadeOut and Remove Table Row

I know this question has been asked before but I seem to have a different problem than has been addressed before. I have a table and I would like each row to have a delete link that fades the table row out and then removes the table row from the…
Nick Olsen
  • 6,151
  • 9
  • 51
  • 74
8
votes
5 answers

How to slide down a div then .fadeIn() the content and vice versa?

Goal When a user clicks the button, the div in question will: slide down stop fade in the content When the user clicks the button again, the div will: fade out stop slide up Current position Here is an example where the fadeIn and fadeOut is…
Classer
  • 467
  • 2
  • 5
  • 16
8
votes
2 answers

Jquery replaceWith - fadeout / Fadein

I think this is going to come across very basic stuff but I'm brand new at the wonderful world of jquery. Heres my simple working replace code :
yes yes
What I am trying to…
Webby
  • 2,385
  • 5
  • 23
  • 32
8
votes
2 answers

cancel/stop jquery fadeOut after begin

I've got a very simple page that shows a status update when a user clicks on specific entries on the page. This is all working fine. The first click updates the id='sts' with the correct output, after 6 seconds this fades away. However whilst it's…
MacMan
  • 907
  • 1
  • 14
  • 29
8
votes
3 answers

Android - Fade out bitmap image on canvas

I am drawing a scaled bitmap onto a canvas and would like to fade my image out at a specified time. Basically, when my character image goes over a certain section of the canvas, I require the character image to slowly fade away (3 seconds), before…
Raj
  • 2,558
  • 9
  • 33
  • 51
8
votes
3 answers

Fade in jquery div show

I am trying to get the below script to fade in and fade out with a delay in between. It shows the div correctly and fades out as it should, but it doesn't fade in?

The product was…

Pete Naylor
  • 756
  • 2
  • 13
  • 33
8
votes
3 answers

jQuery fade out elements as they scroll off page, fade back as they scroll back on

I want elements to fade out as they scroll off the top of the page, and then fade back in as they scroll back onto the page. I wrote some code that works, but I am looking for a more elegant solution. Here is the solution I have working on jsfiddle:…
Bill Mead
  • 83
  • 1
  • 1
  • 3
8
votes
2 answers

libgdx sprite fade out

I'm working on 2D shooting game in LibGdx. I have to mention that I'm new to LibGdx, and I'm trying really hard to understand how it works. I have experience in Java and Android programming for few years, so I understand game concepts. I'm…
Veljko
  • 1,823
  • 6
  • 27
  • 55
1 2
3
97 98