Tagged Questions

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
664 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
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 ...
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
195 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 ...
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
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
2answers
378 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
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
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
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
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
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: ...