Fading is the moment at which an item is slowly gaining or losing visibility (appearing or disappearing) in response to events or actions (most of the times triggered by the user).
Questions tagged [fading]
176 questions
0
votes
1 answer
C++/SDL: Fading out a surface already having per-pixel alpha information
Suppose we have a 32-bit PNG file of some ghostly/incorporeal character, which is drawn in a semi-transparent fashion. It is not equally transparent in every place, so we need the per-pixel alpha information when loading it to a surface.
For fading…

Emir Kotan
- 63
- 5
0
votes
3 answers
Fading Text on Countdown Timer
I've recently been put in charge of making a countdown page for a game launch. Now, I've got a simple countdown javascipt file made from this tutorial, but I'd like to make it a bit more fancy. I'd like to find some way to make the numbers fade out…

Patrick
- 355
- 2
- 11
0
votes
1 answer
iphone image change with motion
hi is there any way to set image [uiimage image named@"abc.png"] with the motion effect means the image should not be changed at once , it need to change with very slow motion effect so that user can see that image is now changing .
Thanks in…

Mohit kumar
- 248
- 3
- 12
0
votes
1 answer
Random text to fade
How do I get random text to fade, from text1 to text2?
My code is as follows:
-(IBAction)generateNumbers; {
int randomNumber = arc4random() % 1;
switch (randomNumber) {
case 0:
label.text = @"text1";
break;
…

Jesper Linnebaek
- 11
- 1
0
votes
3 answers
How to stop javascript fading out element already selected
Hi There i have the following code that allows users to swap between 3 tabs, it shows and hides divs by fading them in and out, I would like it so that if the current tab is selected on the nav bar it doesnt fade out and in again, instead i want it…

Daniel Winter
- 11
- 3
0
votes
4 answers
JQuery - div fading trouble
I have div, which has id 'content'. It's visible.
Now I want to fade it out:
$('#wrapper').fadeIn( 1500 );
$('#content').click(function(){
…
Some text

Max Frai
- 61,946
- 78
- 197
- 306
0
votes
0 answers
Fading/Flashing Random text with Rails?
Basically a replica of this article only for rails:
"Flashing" random text with javascript
How do I do this?
I haven't tried anything because there are literally none which ask this using Rails, nor do I want to use jQuery or JavaScript.

MFCS
- 419
- 2
- 8
- 14
0
votes
1 answer
Fade in when scrolling
My site is www.jeremyspence.net78.net. As you scroll down I want to make the main menu dissapear(the one menu you see now) and another smaller menu (kinda like the apple menu from apple.com) appear on the top that is fixed, I was thinking about…

user1940007
- 721
- 3
- 10
- 14
0
votes
0 answers
Draw a ring shape with fading edges?
How can I get a ring shape with fading edges in a drawable? I've tried this, but it's not working
-

leonidas79
- 437
- 2
- 7
- 19
0
votes
1 answer
CSS Crossfade image
I have this code that works great. When I pass the mouse over the image it crossfades to another image.
What I want is: when I pass over the mouse the image crossfade and rest like this, I mean, make only 1 transition.
1)image 1
2)onmouseover image…

alex
- 21
- 3
0
votes
1 answer
css faded border
I'm trying to create a box with faded borders. I've managed to find so examples but I can't create what I hoping to accomplish.
border:3px;
-webkit-border-image:-webkit-gradient(linear, 0 0, 0 100%, from(#382E5C), to(rgba(0, 0, 0, 0))) 1…

Philippe Allaire
- 77
- 1
- 8
0
votes
1 answer
Adding fadeout fadein on background image of jQuery slider
I create one jQuery slider. I just want to show/hide left and right arrow on first and last thumbnail apperance, also want to animate the background image fadein/fadeout method. Here is the demo link http://jsfiddle.net/NwmLL/8/ Please help me.

Shakti
- 218
- 2
- 15
0
votes
2 answers
Drag and drop crossfading using Javascript
I'm looking to drag and drop a png image over another png image in the fashion of a cross fade using Javascript. I researched a little and could only come across similar situations but the ones I found were mostly automatic (couldn't do manual drag…

starcodex
- 2,198
- 4
- 22
- 34
0
votes
2 answers
Fading a UIView with a subviewed button
I'm trying to create a button that fades out and then in when I open the page.
Here is the current code that i'm using, it doesn't work to fade the buttons in/ out:
- (UIView *)carousel:(iCarousel *)carousel viewForItemAtIndex:(NSUInteger)index…

mhorgan
- 886
- 2
- 11
- 32
0
votes
1 answer
Change fading image by clicking on link jQuery
I created an image fading slideshow reading this article.
The code looks like this:
$(document).ready(function() {
$('#iPhoneExample img:gt(0)').hide();
setInterval(function() {
$('#iPhoneExample :first-child').fadeOut(1000)
…

matteodv
- 3,992
- 5
- 39
- 73