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

learn more… | top users | synonyms

0
votes
1answer
13 views

Want to create a download button that fades to another image on hover and then to a third image on click

Please forgive me if my question is too simple. I am VERY new at this! I'm trying to create a button for downloading a file on my site. I want the button to change when a user hovers over it and ...
0
votes
1answer
23 views

Inline Javascrip fadein on pageload

New to Javascript and trying my best, but can't solve the problem despite extensive searching. Trying to make an item fadein on page load using inline script (XHTML). I'd love to use external, but ...
0
votes
1answer
14 views

FadeIn effect and diagonal movement at the same time using jQuery

I want to create the same effect in the link below... http://ampolla.com.br/testing/Untitled.html I want a fadeIn effect and a diagonal movement at the same time using jQuery. The effect of the link ...
0
votes
2answers
35 views

Javascript/JQuery background Image fadeIn

Hello wizards of stackoverflow! I've literally just started using JQuery today and I'm stuck. I need the background image to fadeIn onload. You can ignore the basepath function It's just what i use so ...
0
votes
0answers
12 views

How to combine jQuery code for fancybox 2 fadein effect and to use title-id?

I am using fancy box 2. I have some code that allows me to use data-title-id to give the gallery items in fancybox a title with anchor in them. I also want to use another piece of code which ...
1
vote
1answer
23 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 ...
-4
votes
0answers
44 views

How to use jQuery callback when using .each()?

I was wondering how are we supposed to use callback properly when we are accessing elements through the .each() function? Since it's a little hard to explain I will show a video demonstrating my ...
0
votes
1answer
22 views

jquery fadeIn fails with asp masterpage

I have looked very hard to find the answer to this but no success. When the button is pressed three divs are supposed to fade in at different speeds/times. What happens is when the button is pressed ...
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
28 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
1answer
39 views

Fade 10 divs in and or out

In my example i want the divs fade in or out the problem is if i add .fadeIn(2000) or .fadeIn(slow) to the elements it doesnt work. How can somebody help me with this ...
0
votes
3answers
35 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
3answers
48 views

JQuery function for multiple button event with same Id

I am trying to call a JQuery function to occur fade in event for the buttons with same id, but it seems only first button in the brower can occur the event. This is JQuery Function to "fade in" for ...
-1
votes
3answers
44 views

JQuery FadeIn doesn't work in php file

I am trying to use fadeIn() method in php file, it is exactly same code as HTML but not working. Here is working example: -------------------------- function hide(){ ...
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
48 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
36 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
4answers
48 views

Fade in / Out div with Javascript

So I have some javascript for a website but at the moment the only way I can get it to work is if it is mixed in with the HTML. I've read this is bad practice, but I can't figure out how to get it to ...
0
votes
0answers
27 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
1answer
41 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() ...
0
votes
3answers
20 views

JQuery on submit/onLoad not triggering fadeIn effect

I have some data stored in a database and when the user types in their postcode a list of stores near them shows up in a list. I have called this in using PHP like this: <div class="stores"> ...
0
votes
0answers
32 views

Why does my fade-in function not depend on the duration?

I have a menu with a sub-menu below it. As the user hovers his or her mouse over the main menu, the options within the sub-menu change accordingly. If the user does not hover over any menu (main or ...
0
votes
0answers
23 views

Append new Masonry items without animating, only fade in

I've looked through the Masonry docs and can't seem to find a way of not animating appended items, but only fading them in. This must surely be doable?
0
votes
1answer
31 views

run callback function with its parent in jquery

I want to run animations for the links (q2 ul li a) while showing (q2) in same time, q2 will be hidden on page load. $('.q2').fadeIn(function(){ $('.q2 ul li a').animate({ borderSpacing : 1 }, { ...
0
votes
1answer
43 views

How to do fadeIn in jquery, and how to fit to all resulotions?

I've had a little practice in HTML, CSS, etc. I've done a little ticker. In this ticker you can write in a text box, press on a button, and what you wrote will appear under. you can write as much as ...
3
votes
4answers
90 views

jQuery fadeIn 'slow' immediately appearing

I'm trying to make it so that when you click a link, it removes a div (with some paragraphs and text) and inserts another div (with some paragraphs and some text). I'm using jQuery to fade those in ...
0
votes
1answer
38 views

How to prevent empty space when fading in/out div to avoid momentary site collapse

I am using a script to allow the user to alternate between view modes (Grid, List, and Full). When the user changes view modes, the active view fades out and the selected fades in. During that ...
0
votes
1answer
32 views

jQuery Force fadeIn() to use display: block for list items

I am using fadeIn() to fade in some list items. I want them to go from display: none to display: block. But jQuery applies the style list-item instead of block. Example here: ...
1
vote
1answer
44 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
1answer
43 views

jQuery mouseenter/ mouseeout effect - not with first hover

I thought it would be easy - make simple hover effect with jQuery. But I have strange behaviour with this code: jQuery('.has-children').on({ mouseenter: function () { ...
0
votes
2answers
31 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"); ...
2
votes
1answer
29 views

fadeIn issues with with scrolling

I'm trying to have my content fade in when reaching a certain proximity to to respective ends of the page. The fade works fine when the trigger is set to the very top and bottom but when I set a ...
0
votes
2answers
47 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 ...
0
votes
1answer
44 views

Fade In and Out animation in Android

I need to create an animation in android,i have one fixed image in the screen, i need to add another image over the previous image using fade in and out. i have searched and i found something like ...
0
votes
1answer
32 views

fade between two UIButton images

i want to fade between two UIButton images for the purpose of setting favorites in a UITableView. Currently the transition is done without effect - it just changes the images directly on click/touch: ...
-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
2answers
38 views

jQuery ready function loads only on refresh

I'm trying to get all images to fadeIn on page load. However, this only happens when I refresh the page. When I click on a link to another page, it doesn't do anything. Here is my code: custom.js ...
2
votes
2answers
274 views

Android Volley - how to animate image loading?

any idea how to play a fade in animation when image loads? Now it just blinks into place. I am using NetworkImageView from the Volley toolkit. Also, is there a way to set loading and error bitmaps on ...
0
votes
4answers
46 views

why is this not fading in the block instead of just showing it?

I'm trying to fade in a block using css transitions. I have a class that is set to opacity 1, after setting the display to block from none. It ignores the transition. Can anybody tell me why? Thanks. ...
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
0answers
52 views

Click, Scroll to and fade in

I need your help with a javascript. The status quo: I am making a website, that kind of functions like a slide show: Each slide consists of a header, an image and a little text. Underneath the text ...
1
vote
1answer
84 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
1answer
56 views

JQuery cycle, thumbnail src rotator on hover with fadeIn

Any chance to add fade In effect with this function, is use function below to rotate thumbs on my site example http://jsfiddle.net/u6PLS/ $(document).ready(function(){ var timer, ...
0
votes
0answers
46 views

jquery - fadeout() empty() fadein() issues with an image

I have been building this page to learn jQuery and have run into a problem I cannot figure out with loading an image into a div. It works fine the first time. The image fades out and in fine the ...
1
vote
2answers
56 views

jQuery FadeIn multiple Times

so I wrote the following code: $('.frame').each(function(){ $(this).click(function(e){ var id = $(this).attr('id'); e.preventDefault(); ...
0
votes
1answer
12 views

css3 animation triggered each time the div is fadeed in

I am using -webkit-animation on a div like the following: #agFloor { background-image: url('http://blabla/something.jpg'); width: 375px; height: 364px; top:0; left:20px; ...
0
votes
0answers
65 views

jQuery fade in each div when in viewport

I'm trying to have a series of div's fade in when the users scrolls through a single page site. However, at the moment I can't seem to get the jQuery fade effect to work, instead I've resorted to ...
0
votes
1answer
31 views

fadeIn() with jQuery

I have a page where I can comment on a specific item (kind ofdetailpage). I want to fade that comment in with jquery. My problem is that everything is fading in. Not only the update I post. ...
0
votes
3answers
73 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 ...
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 ...

1 2 3 4 5 21