Questions tagged [fadein]

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

Displaying something by fading it from transparent to opaque.

The tag is often used to refer to the jQuery fadeIn() method.

2074 questions
0
votes
1 answer

How to create a navigation bar that fades in when user scrolls down? (on blogspot)

Okay, total noob here. I have a blog on a blogspot platform, and I'm trying to create a navbar that fades in when the user is scrolling down. I've made my navbar in flash, put it in the right place, made it transparent and fixed etc. It is a div.…
0
votes
1 answer

Jquery Waypoints fadeIn and animate

I am currently working on a project that needs a few jquery functions which seem to be too complex to build for me, so I hope anyone here might have some solutions for me. I am working on a one page scroll site and I already impleneted some…
Supapinzi
  • 345
  • 3
  • 12
0
votes
1 answer

Append HTML but have separate fadeIn on document click

I am appending a div every time the user clicks anywhere on the page. I want the div's to fadeIn but the way I first did this each div that was appended had the same ID. This is a problem if I want each letter div to fadeIn separately. So I tried to…
0
votes
3 answers

Jquery fading in/out

I need help on this project. http://natur-perlen.dk/ The menu has a jquery function which allow picture to be displayed when moving mouse over the menu. I need the pictures to fade in and out, not like it is now. More like the slider. Here is the…
ms9778
  • 21
  • 5
0
votes
1 answer

Javascript fade in/out effect freezes when hovering quickly over images

I'm playing around with pure JavaScript, so I created a small fade in/out object, to adjust images opacity onmouseover and onmouseout. Fading works fine when the mouseover and mouseout actions are precise: Start moving the cursor from the white…
lesssugar
  • 15,486
  • 18
  • 65
  • 115
0
votes
1 answer

UIImageView startAnimation fades in first frame -- causing issues

I've got a UIImageView whose image property is set to an image which corresponds to the first frame of an animation. At some point, the user performs a touch and the animation starts playing. However, I've noticed a "blink" in the UIImageView when…
user2320861
  • 1,391
  • 2
  • 11
  • 28
0
votes
1 answer

jQuery fadeIn and fadeOut Issue

I have some jQuery for an image slider but for some reason my fadeIn effect only works on the first slide and the fadeOut effect works on all slides except the last one. I'm a beginner when it comes to jQuery so it might be something really simple.…
Tyharo
  • 383
  • 2
  • 5
  • 23
0
votes
3 answers

Sequential DIV fadeIn/Out onClick - class change

The idea is to have a single anchor or button with a cycle of functions depending on class. I've played around with a few things but always get stuck with it calling the same function even though the class has been changed. Not being fluent in…
Aquious
  • 64
  • 2
  • 14
0
votes
2 answers

JQuery issues with fadeOut()

I created a script to fade in a scroll to top button when $(document).scrollTop() > 100, and fade it out when this is not true. This is done by: $.fn.scrollToTop = function() { $(window).scroll(function() { if( $(this).scrollTop()…
0
votes
1 answer

jQuery fadeIn works fine only one time in IE

I have script on button, which fadeIn dimming, load and place content, and fadeOut dimming: $(document).on("click", "#Navigation area", function(){ $('#loader').fadeTo(300, 1); $('#dimming').fadeTo(300, 1, function(){ …
f0rtis
  • 326
  • 2
  • 13
0
votes
2 answers

Jquery FadeIn Messes Up Float Div

I have a bar at the top of my page. When a user scrolls past 700 px jquery will put the formerly hidden logo into the bar using this code: $(window).scroll(function(){ var posFromTop = $(window).scrollTop(); if(posFromTop > 700){ …
user176105
  • 211
  • 1
  • 4
  • 23
0
votes
2 answers

automatically load as fadein popup

I would like the popup to automatically set on and not have to click to make the event. Can you help?