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

learn more… | top users | synonyms

1
vote
1answer
21 views

jquery fade in / out + close button

This is supposed to be the "team" section of a site. Each circle would represent a member of the team. The code works when you click on the blue circle to fade the black div in. Then you can click on ...
0
votes
0answers
26 views

jQuery fadeOut > get/load > fadeIn

Good evenin, basically my problem is, when trying to fadeOut div, load by ajax the new content, and fadeIn that new content, my parent div will lose the "opacity:0" from fadeOut the moment the ...
1
vote
1answer
27 views

jQuery audio fade out and pause, onclick fade in audio and resume

What is the problem here? When I click the #background_audio div, the audio fades out then automatically fades in and continues playing without me pressing the button again. How do I fix it? I am ...
0
votes
3answers
33 views

Load content into a div onclick - FadeOut(), FadeIn()

I have a simple menu with <ul>s. Every <ul> loads its content into a <div> on clicking it. Here's my code: http://jsfiddle.net/EPvGf/16 So to be able to understand my problem, ...
0
votes
1answer
18 views

SignIn Form FadeIn/Out

Reference Image https://dl.dropboxusercontent.com/u/36614618/Doubts/Signin.jpg I have a Problem. By default, Form in the image above will be hide. When I click on Signin Button(top right). Below form ...
0
votes
1answer
46 views

Fadein & FadeOut Divs on Loop working fine - but not showing first DIV

Right I have 3 divs that are fading in and out but there the first DIV is not working nor fading in at all, any idea why? I feel like my code is all correct? jQuery/Javascript: <script ...
2
votes
1answer
33 views

jquery - how to add fadein/fadeout to mouseover background changing code

I have this code that changes background image of a div when you hover over a link: <script> $('.main').on('mouseover', 'a', function () { var background = "url('" + ...
0
votes
1answer
16 views

How to remove the existence of a div with fadeout and delay functions in jquery

I have a situation here that i have a common success message div coming on top of the page. It has a functionality as below: function showSuccessMessage(messageType) { var ...
0
votes
0answers
18 views

jQuery fadeOut effects disappears when building picture rotator

My problem is: Because callback function will be called once the fadeOut is complete, can I put the callback function right after (outside) the fadeOut function ? Here is the situation: I try to ...
0
votes
0answers
19 views

Android animation's continuous loop is not happening

i just copied the code below from this link Android fade in and fade out with ImageView but i don't understand why the continuous loop is not happening. Im thinking maybe the (forever) variable ...
0
votes
0answers
34 views

2 Javascript not working correctly with each other

I trying to get this 2 javascript to run on the same page but to no avail. Both javascript is working fine if separately use but when i use both at the same page, only the fading will work and my ...
0
votes
1answer
39 views

having trouble running a fadein-fadeout Image banner

I am new in jquery I desperately need some help in running this code.I am trying to create a fade in-fade out image banner with 4 images within div tag, with the help of a function fadingbanner() ...
1
vote
2answers
33 views

jquery display inline-block then fade

I have the following jQuery: $('#register_email_address').siblings('.error').css('display','inline-block'); I would like the above to fadeOut after so many seconds. I have tried the following: ...
1
vote
1answer
42 views

Change view modes with fade-in and fade-out (and set a cookie)

I need to give users the option to choose view modes between List-view, Grid-view, and Full-view. The basic structure is simple, something like this: <ul> <li><a href="#">List ...
0
votes
2answers
30 views

fadeToggle() first show the element then fadeIn and Out

Hi I have this code that cycle over a prededeterminated time in this way: var array = [ "tip 01", "tip 02", "tip 03", "Tip 04", "Tip 05", ]; var i = 1; var pippo = $("#div"); ...
0
votes
2answers
45 views

buggy JQuery .animation()

here i have 6 divs (.sticker) inside a single div, onClicking one of them i would like to fadeOut the others keeping the clicked one in it position (that's why i do the postop/posleft thing) then i ...
-3
votes
3answers
29 views

Button onClick FadeIn Text

I'd like that somebody could give me an heads-up with the code to achieve this events: User clicks a button; Button disappears; Text fades in saying "Saved!" in the SAME POSITION of the button; Text ...
0
votes
0answers
19 views

How to show divs on scrolling down on browser

<div id=wrap> <div class=banner1></div> <div class=banner2></div> <div class=banner3></div> <div class=banner4></div> ... ...
0
votes
1answer
14 views

FadeIn and fadeOut repeat

When I quickly click a #div several times, fadeIn and fadeOut is performed several times. I would like the animation is not repeated, if I quickly click #div animation perform only one time. Code: ...
0
votes
2answers
26 views

JQuery .show() doesnt't work when call another function

I have the simple code below: $("#mensagem").html("Success."); $("#mensagemRetorno").show(); $("#mensagemRetorno").delay(3000).fadeOut(800); I would like to call the function 'buscaPosto()' after ...
1
vote
1answer
79 views

CSS3 fade in, pause, fade out on hover

I have a number of divs (boxes) that when you hover over them apply a coloured overlay that fades in and fades out when the mouse leaves the div area. Using CSS3 alone, how do I adapt my code to do ...
0
votes
2answers
21 views

How to change fade InOut timing in jQuery?

Below is some jQuery to fade in and out list items sequentially. This code makes the list items fade in and out very fast. How do I control the speed? function InOut( elem ) { elem.delay() ...
0
votes
3answers
72 views

Jquery fadeIn text on accordion menu

Looking for a little help on how to make text fade in on an accordion menu. More specifically, when clicking on a menu item, I want the text that displays underneath to fade in, and fade out when ...
2
votes
2answers
65 views

jQuery fadeOut sets opacity to 1

I'll keep it short, consider this line: $record.fadeOut(250); Where $record is a table row that looks like this: <tr id="5194c885eb9fbf38aa000026" class="record"> ...
0
votes
2answers
34 views

jQuery simple transition issue

I am developing a very simple one-page site here: http://dispose.co/dormstory/pod.html As you can see I've got the content positioned absolutely, and when you click a link the former content fades ...
0
votes
1answer
57 views

jquery fade in, fade out loop

I want to create a loop like this, anim = function () { $('.a1').fadeOut(function () { $('.b1').fadeIn(function () { $('.b1').delay(5000).fadeOut(function () { ...
0
votes
2answers
131 views

Fade In/Out Background Image with Another Image / fade out other elements

I'm having trouble with fadein/out of some elements. I need to have several divs, fade in a new background, as well as text when it is hovered over. I also need to have the other divs to fade out ...
1
vote
3answers
87 views

Can't fade out submenu, with jQuery

This is my first question! Certanly you will help me on this. I´m working on this horizontal menu: HTML: <div id="menu"> <ul> <li><a href="#">MENU 1</a> ...
0
votes
1answer
38 views

Hide fixed div when footer is in view and show when footer isnt in view? (jQuery function)

I have a query where i have a fixed div with contact details that i would like to be on show until the footer is in view then it will fadeout. When the footer is out of view when the user scrolls up, ...
0
votes
3answers
45 views

How to Perform jQuery UI Function on Div

I would like to find out if there is a way to perform certain jQuery UI function (e.g. fadeout() ) on particular DIV if all div has the same name. The thing is that, the program output data into ...
0
votes
2answers
41 views

Fade out volume of <iframe> with jQuery

I'm trying to fade out the volume of a YouTube video embedded in an iframe when the user closes the modal window it is attached to. Instead of having the audio end abruptly, it would be nice to fade ...
0
votes
1answer
31 views

jQuery - fadeOut complete happening before it's complete

What I want to do: So I want to fire a function that resizes the containing div when one of its children are deleted BUT only after its done fading out. The Problem: The wrapper div is being ...
0
votes
2answers
79 views

multiple jquery fade slideshow with one function using class name

Ok this may be a noobie question, I hope its easily answered. I successfully used this simple fade-in fade-out script for a few divs on a page: function fadeContent() { $(".banner ...
0
votes
4answers
39 views

show individual elements independently using each method

trying to show only one element at a time using each function, but not sure how to get matching item associated with first item so as you hover over first "hoverMe" it shows only first showMe and so ...
0
votes
1answer
28 views

Fade in and afde out on click or hover

I have this script: $('#tooncart').click(function() { $('#top-cart').slideToggle('fast'); return false; }); I need a hover on #tooncart, the #top-cart needs to fade-in. When ...
0
votes
2answers
71 views

Fade Out/Fade In of List Items

This is for a "Meet Our Staff" page where there is a vertical unordered list of small images associated with a staff member (#staffDirectory). When the user clicks a different staff member than the ...
0
votes
2answers
24 views

how can I fadeOut a Parent?

This is what I've got so far. -HTML- <div id='parent'> <h3>Header</h3> <p>Body Copy</p> </div> -Script- $("#b_submit").click(function() { ...
2
votes
4answers
42 views

jQuery fade-function not repeating

I'm a jQuery-noob trying to learn it and I have a problem. I wan't my divs to fade between eachother, like 1 - 2 - 1 - 2 - 1 - 2... I would like it to repeat but it only does it ones, then it stops. ...
0
votes
1answer
79 views

Android: Make Fade Out Animation For Multiple Buttons More Smooth

Is it possible to make fade out animation for multiple button smoothly? Created fadeout.xml @res/anim <?xml version="1.0" encoding="UTF-8"?> <set ...
1
vote
2answers
57 views

Jquery .html, then .fadeout

I am trying to update .html(''), then delay(400) and fadeOut, thereafter update .html(''), and finally fadeInagain... if(data==1) { var html = "an other text" $('#nyhedsbrev').html('<br/><p ...
1
vote
0answers
48 views

Is it possible to have a sprite fade out from left to right?

I have a full screen animation and I am wondering if it is possible to run a fadeOut from left to right action on the sprite?
1
vote
1answer
49 views

Jquery fadeOut not animating

Can anyone see why this code doesn't display the animation? I can see in Chrome that the animation is happening correctly (in the F12 tools I see the animation happening, and the divs are switching in ...
1
vote
1answer
39 views

jQuery Page Performance with .Length

Having some performance issues with jQuery. I'm iterating through all the posts made in my Wordpress theme, each post is designated a div dynamically: ie. container1. So, mostly for experimentation ...
0
votes
1answer
89 views

jQuery fadeOut 'inline-block' div fadeIn “inline-block” div

Having some trouble getting my jQuery correct. Essentially I want to click on a div, .fadeOut the two other 'inline-block' divs next to it. Keep the 'clicked' div in the same position as well as ...
1
vote
3answers
64 views

Jquery fade function?

New to Jquery and wondering how to add a fade function when this happens. function toggleDivs(n) { // Hide all divs var elDivs = ...
0
votes
1answer
25 views

Cannot interact with DIV via jQuery after it is destroyed and recreated?

Problem After it has been destroyed and recreated, I can no longer interact with a DIV on my site. I have tried using both its ID and class, with no luck. To reproduce Go to ...
1
vote
2answers
74 views

In GTK+ 2.24, create temporary dialog with fade out effect

I'm making a cross-platform program with GTK+ v2.24 and after a lot of things done, I bumped in a problem. This is what I'm attempting to do: 1) Pressing enter in a GtkEntry, fire an event (done with ...
0
votes
1answer
38 views

when the menu is mouseover, it disappears when I click on an input and I take it in focus

I have a div that when she flew brings up a menu where people can log. The problem is that when a person click on the input and wants to get an address that is already registered, the menu disappears ...
1
vote
0answers
33 views

jQuery Issue With Cycle and Fadeout

Ok so I've run into a bit of an issue. I've got a div that is resized to fit the browser window size and within that div I'm using the cycle plugin to fade through some text. That all works, but ...
0
votes
0answers
20 views

Hover to hide div and show another with fade in/out animation

Hover to hide div and show another with fade in/out animation I want something like "SHARE" on this site : http://www.myowncorks.com/

1 2 3 4 5 14