The fadeOut() method gradually changes the opacity, for selected elements, from visible to hidden (fading effect).
0
votes
2answers
20 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
38 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
53 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
32 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
41 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
68 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 ...
0
votes
3answers
51 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
27 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
44 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
25 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
26 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
40 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
30 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
21 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
52 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
22 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
37 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
50 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
43 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 ...
0
votes
0answers
40 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
33 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
37 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
55 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
53 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
22 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
63 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
27 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
26 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
14 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/
0
votes
3answers
60 views
jQuery Slider FadeIn()
Am working on a banner with fadeIn/fadeOut transition. Its simple realy. On intervals the images change randomly. All that works fine.
The issue is with the fadeOut part. the current displayed image ...
1
vote
3answers
125 views
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?
<?php
...
0
votes
2answers
43 views
Jquery FadeIn and Out on Multiple Divs
I'm usina script to fade div's in and out. It works fine on one but not not at all on the other one. Does anyone know why? Here is fiddle of it http://jsfiddle.net/MeEc6/
This is the JavaScript:
...
0
votes
2answers
68 views
FadeOut/FadeOut not working but show() and hide() do
I have this simple code to create tabs on two divs, but when clicking on the tabs the elements are not fading in or out, however if I change fadeIn and fadeOut to show and hide, it works fine, I don't ...
0
votes
1answer
111 views
Fade-in Fade-out with CSS and jQuery
Here's the complete HTML code that i applied to make 2 quotes fadein and fade out simultaneously .. it works in jfiddle but not on my webpage. Can anyone tell me whats wrong?
Here's the jfiddle: here
...
0
votes
2answers
55 views
jQuery box fadeOut/fadeIn blinking after mouseleave
How to make this just fade out on mouseover and just fade back in again on mouseleave?
My jsFiddle
$(function() {
var box = $('#box');
box.on('mouseover', function() {
box.fadeOut(500);
});
...
2
votes
1answer
70 views
Chrome: Recover document focus after jquery fadeOut
I'm trying to have an overlay that I can toggle with keyboard keys.
However, once I hide the menu using fade out, the document won't receive my keydown events until I click in the window. How can I ...
0
votes
1answer
103 views
HTML5 Loading Titles dynamically onclick Div or Screen
For loading new titles into view dynamically every time you click the last loaded title or by clicking on the slide or screen like you can do using similar to PowerPoint's transition "fly in" every ...
0
votes
1answer
62 views
Calling setTimeout jquery function multiple times
I have this function:
<script>
var loop_handle;
var xSeconds = 10000; // 1 second
loop_handle = setInterval(function() {
$('#overlay').fadeOut('fast');
$('#box').hide();
}, xSeconds);
...
1
vote
3answers
52 views
Is it possible to add a fade to the .slideUp & .slideDown jQuery Function
Is it possible to have a slight fade to the .slideUp & .slideDown so it slides upwards with a fade?
options.trickerPanel.slideUp(function() {
$(this).html(value).slideDown();
Here is ...
0
votes
1answer
43 views
jQuery not loading on [closed]
I have a jQuery fadetoggle function that's supposed to work on all eight pages of my site, but of the eight, the function only works on the home page and the Contacts page.
There are eight main pages ...
2
votes
2answers
116 views
jQuery fade in/out two divs at a time, looping and repeating
I'm using the Advanced Custom Fields plugin for Wordpress with the Repeater Field activated to give a client the ability to add as many testimonials as they want. The testimonials are each displayed ...
0
votes
3answers
28 views
Having an issue with fading in JQuery. Any ideas?
So, what I need to do is have something fading in and out repeatedly on a page until the 'reset' button is pressed (further information on that not needed).
So, I have a paragraph element on a page ...
1
vote
3answers
201 views
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. ...
0
votes
3answers
66 views
Time delay on element with fadeToggle()?
What's the best way to set a time delay on an element for it to display for a certain time, but with a fade-in and fade-out effect upon appearing and disappearing? Can this be done with the ...
1
vote
1answer
102 views
Buggy fade in/out code in JavaScript/CSS
I'm not the most proficient in coding and have been stuck at trying to get this function working right for days and hope that someone could help me...
The idea is for the red div to show by default ...
0
votes
1answer
51 views
weird effect on jquery I fadeout
I'm trying to show a div when a li is clicked and to hide it when other li is clicked. The problem is that a weird effect appears when I click on of the last li's.
Here is how my code looks: ...
1
vote
1answer
227 views
Change function “document.getElementById” to “document.getElementsByClassName” & add fade in/out - JavaScript
my knowledge of JavaScript is incredibly limited and I hope someone would be able to help me out!
I have the code below, I'm trying to make the code work with class rather then id and also add a fade ...
0
votes
2answers
188 views
Displaying HTML elements on an image with the fade-in and the fade-out effects
I'm displaying two buttons and a checkbox on an image as can be seen in the following
These buttons and the checkbox are shown only when the mouse pointer is positioned over the image. They ...
3
votes
2answers
60 views
Selecting all children of an element and fadeing them out using jQuery?
I am using the following HTML code:
<!DOCTYPE html>
<html>
<head>
<title>Project Quiz</title>
<link rel="stylesheet" type="text/css" href="z/baseCss.CSS">
...
0
votes
2answers
54 views
On .click the body should fade out, but it doesn't
Hello stackoverflower,
I have a little problem with the following javascript on my page.
The goal is, that it fade's out the body and then goes in 'parent.history.back', using Jquery. But somehow I ...





