Tagged Questions
The fading tag has no wiki summary.
9
votes
2answers
319 views
Clean way to implement gradual fading of brightness in Android?
At the moment I have code to fade brightness adjustments which looks something like this:
new Thread() {
public void run() {
for (int i = initial; i < target; i++) {
final ...
5
votes
3answers
6k views
jquery add a fade to an .addClass
How do I fade .addClass in and out.
Here is the link -
http://www.bikramyogajoondalup.com.au/about-bikram-yoga/postures-benefits.html
and here is the code -
$(document).ready(function() {
...
3
votes
3answers
663 views
How to add fading or image transition effect using?
I have just one <img> element on my page. I change the src attribute of this image every 7 seconds.
I see the new images every 7 secs, but it would be nicer if I can add some fading or ...
2
votes
3answers
121 views
using jquery fadein to display a selection of links on page load
I want to use jQuery to fade in links inside a nav div on page load. Currently they're styled using an a and have individual id's.
#navtop a {etc.}
Will I have to change that into a class, add ...
2
votes
1answer
173 views
Fading banner like text with jQuery
I have a title text, which I want to fade into a box.
Afterwards, a subtitle should fade in beneath it.
Once both are visible, they should fade out, and the next set should fade in, in the same ...
2
votes
2answers
217 views
Android ListView Edge Fading works on a 2.2 virtual device but not on Samsung 2.2.1
On my ListActivity I get the fading edges effect when running on an Android 2.2 virtual device. However, when I use a Samsung GIO with Android 2.2.1 to run the exact same application, I get no ...
2
votes
1answer
226 views
jQuery fade out before fade in
I am making my portfolio, totally javascript based. http://portfolio.theadamgaskins.com/Portfolio/
My problem, is when you click one of the navigation buttons, the new page fades in at the same time ...
2
votes
2answers
197 views
Advanced fading of one picture to another
So basically im making a custom button.
Desired Behaviour:
When a user mouses over, then the mouseover picture will fade in.
When a user mouses off the mouseover/pressed picture will fade out.
...
1
vote
1answer
49 views
Modal dialog box with fading background?
In my WPF application, when there is no user activity for 2 minutes, the application logs off.
I need to show the login box in the silverlight style (Background fades off). How can this be ...
1
vote
2answers
50 views
want to make changing bgs smoothly like fading stuff
I've spent many days trying to figure out how to animate background image transitions, but I can't find a solution. I am new to web development so please dont be harsh ;)
Here is some example code I ...
1
vote
4answers
66 views
How to fade all divs in a container except one with jQuery?
I've got this:
$("#id").click(function() {
$('.swoosh div').fadeOut('fast', function(){
$('.template').fadeIn('fast');
});
});
.swoosh is the container div, and
.template is the div ...
1
vote
2answers
194 views
Change z-order of div with fade effect on mouse over
I have 4 images stacked on top of each other, see below:
I'm trying to achieve two things:
When the mouse is over an image that is in the background, that
image should come to the foreground with ...
1
vote
1answer
232 views
OpenGL: Drawing Quad - Color fading issue
I'm trying to draw a white quad on Android with OpenGL-ES and the colors are fading.
See picture: http://img88.imageshack.us/img88/2787/tempew.png
I have tried it with int numVertices = 4; as well, ...
1
vote
1answer
283 views
Looking for help in C# with RGB color cross fade
Ok, I made an app in C# that polls info from my screen for ambilight SFX using an external LED controller. My question is, what is the code or how do I go about making a color cross fade type thing ...
1
vote
1answer
391 views
Android fading edge disappears
I've got a pretty weird issue and can't find a solution. These two pictures show my problem:
http://img225.imageshack.us/img225/7758/snap20110412234026.png
...
1
vote
1answer
151 views
C++, SFML 1.6, smooth sound fading effects?
what is the best possible way to smoothly fade in/out a sound with SFML 1.6? It has SetVolume() and SetAttenuation(). These two directly set these values. But I need a smooth transition from one sound ...
1
vote
1answer
254 views
fading edges working only on top and left
I made a custom ImageView that supports basic scrolling through calls to View.scrollBy() in a GestureDetector. I wanted to add some feedback on the reaching of scrolling bounds so I enabled fading ...
1
vote
2answers
1k views
Is it possible to change the colour of the FadingEdge of a Listview?
I want to give the effect that the ListView has faded from whatever is around it. By default it is set to whatever colour your ListView is. I can adjust the orientation of the FadingEdge and the size ...
1
vote
4answers
484 views
C# opposite color [closed]
Possible Duplicate:
How do I invert a colour?
Is it possible to find the opposing color for a given rgb combo? For example I have the following in a basic app.
myColor red = new ...
0
votes
3answers
34 views
Jquery fadeIn fadeOut list of divs with active divs
What I'm trying to achieve is a list of links with some separate divs.
at the moment the fading is working but is "jumping on click" and the active in both <ul id="links"> and #description ...
0
votes
3answers
53 views
JavaScript and CSS text fade and SEO
I'm currently designing my first website and I want to use a carousel style fading image sequence. I also want to include text over this that fades in and out such as this:
http://jsfiddle.net/azzWZ/
...
0
votes
1answer
41 views
Animation of UIButtons in ScrollView
I render "n" UIButtons into a ScrollView. I've subclassed the UIButton to handle long taps.
The UIButtons are of type "custom" and display only a 150px x 150 PC image from Documents Directory.
If ...
0
votes
1answer
70 views
How do you fade one picture color into another picture color? Python [closed]
this is the link for my assignment. i really don't know how to get it started.
https://learnonline.nku.edu/bbcswebdav/courses/INF-120-007-2012-010/INF120_Program6.pdf
i need two of the same size ...
0
votes
1answer
129 views
Android disable fading edge
I would like to completely disable the fading edge at the top of my activity/application. My view consists of only a WebView that is created programmatically:
public void onCreate(Bundle ...
0
votes
1answer
62 views
Redirect into New Page after Background Fades Android
I wanted my app to had a fading picture first before going into another page using threads. Below is the code i used and it worked well for me. However, it stops in the white page at the end of the ...
0
votes
0answers
9 views
My opt-in form is fading away when my images fade away
I created a landing page with background image transitions and the form that I created is fading away when the image fades. This isn't happening on Firefox or Chrome, only on Internet Explorer.
Can ...
0
votes
1answer
40 views
jQuery fading links except those that are images?
I have programmed a very simple script with jQuery. The idea is to fade all links with opacity except links that are images.
Here is my code:
$('#content_wrapper a, #footer_wrapper a, ...
0
votes
1answer
105 views
How to accelerate WPF fade in/out animation
I implemented lightbox effect with window's opacity change whilst fading in/out. When I have my window maximized this effect has big delay or when I use duration property then opacity change is not ...
0
votes
1answer
379 views
Android ScrollView fading edge
by default scrollview's fading edge is visible only if it is possible to scroll in that direction. How can I make it visible at all times?
I don't want to put any drawables on top or something like ...
0
votes
2answers
377 views
jQuery addClass fadeIn fadeOut
$('.a').bind('mouseover',function(){
$('.a').addClass("b");
}).bind('mouseout',function(){
$('.a').removeClass("b");
});
I want to add fadeIn fadeOut in the above code like :
...
0
votes
3answers
362 views
making button fade using javascript onmouseover
I want to make my image button fade when I put the cursor over it. I am using a script I found online but it doesn't seem to be working.
<html>
<head>
<script ...
0
votes
1answer
95 views
Problem with mouseenter/mouseleave and fading
I'm using mouseenter/mouseleave on a div for fading it in and out.
The problem is when quickly hovering the div it results to some kind of queue where the div keeps fading several times.
Seems like ...
0
votes
0answers
79 views
Automatic content-fader
there is maybe a bug in my javascript. Please have a look on this webpage to understand my problem (sorry, because my english is not the best) =>page with content-fader
The content-fader is fading ...
0
votes
1answer
179 views
how to add fading effects in javascript
Hi
I have a js code and would like to know how to add a fading effect. In the code I have 3 images.
Here is the code:
<html>
<head>
<script type="text/javascript">
...
0
votes
2answers
105 views
jQuery Fading Effect
I couldn't find exactly answer of my question.
This is my buttons which created with css sprites. You can see. When mouseover , background color changing to white (opacity 15% and background ...
0
votes
1answer
132 views
Javascript transitions on CSS scaled images perform poorly
I am working on a front page gallery which has several images, scaled to fit the page via CSS.
The images fade from one to the next (overtop of each other), and will resize if the user resizes the ...
0
votes
2answers
98 views
Blending messages in and out with control or jquery
What would you suggest, if I wanted to blend text messages in and out (fade in and out) from codebehind ?
My problem is the following:
I have a couple of modalpopups in which I have UpdatePanels ...
0
votes
1answer
61 views
How did they make a fading, animated signin button?
If you look at www.me.com by Apple. Yoiu will see the SIGNIN button loops in fadein and fadeout animation. Is this jquery?
Erik
0
votes
2answers
118 views
javascript/jquery: looking for image-fading script
i'm looking for a lightweight script (pure javascript preferred) - it should be for smoothly fading a sequence of images into each other (=image-carousel).
it should also be possible to run several ...
0
votes
2answers
132 views
Help making my JQuery Fading Gallery more efficient
On the homepage of this site - http://bit.ly/a3IoV5 - I have a large image fading JQuery gallery.
Here's the JQuery:
$('.fadein img').addClass('js');
$(function() {
...
0
votes
2answers
248 views
Can Scrolling control an Animation?
I have a UILabel that displays the current date for the current view of my scroll view. When I scroll this view to the left (to the left pages), I'd like this label to change to the day before, with a ...
0
votes
2answers
410 views
Explorer and FADING IMAGES IN OVERLAYING DIV'S problem
Why isn't the overlaying image (in nested div) fading along with the parent div? Problem only in EXPLORER..
See the 'recent' labels on the portfolio items: My website
Switch category's in the ...
0
votes
2answers
496 views
jQuery fadeTo effect is having problem in IE
I am trying to make the opacity of body to 0 for some time and then make it to 1.
But the problem is in IE after getting the opacity to 1, page is looking some how different.
0
votes
2answers
425 views
Simple javascript fading effect not working in IE7/8, fine in other browsers
See http://jonesonter.notomato.com.au/.
I have a simple fading effect written when you hover on some list elements positioned over a stack of images which are all absolutely positioned on top of each ...
0
votes
4answers
385 views
JQuery - div fading trouble
I have div, which has id 'content'. It's visible.
<div id="wrapper" style="display:block">
<div id="content">
Some text
</div>
</div>
Now I want to fade it out:
...
-1
votes
1answer
111 views
ipnoe development ..need to fade text over a back ground image
i wish to have a lable with text that appears and the slowly fades over a background image.
and have a lable on the image with text but i wish it to stay for i second and then gradualy fade im using ...