Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
4answers
4k views

jquery fade element does not show elements styled 'visibility: hidden'

I have a bunch of thumbnails which I am loading with a style of visibility: hidden; so that they all maintain their correct layouts. Once the page is fully loaded I have a jquery function that fades ...
10
votes
3answers
890 views

jQuery Innerfade - fading weirdly on IE7

I'm wrapping up a new site, http://architect.sitesbyjoe.com and I'm using the innerfade plugin on the site's homepage. For some reason, the fading is slow and choppy. The only other thing ...
7
votes
3answers
2k views

jQuery fade in background colour

I'm trying to fade in the background colour of a table row, and can't get it right. The fade-in will happen when a button is clicked. I tried something like: ...
6
votes
1answer
197 views

jQuery fadeIn and fadeOut issue in Chrome, but works in firefox

Any reason why the arrows on this carousel fade out in firefox but not chrome? Please find the link $(document).ready(function() { $("div.slider-wrap").hover( function () { ...
6
votes
2answers
5k views

Why doesn't jquery fadeIn() work with .html()?

When you click you a checkbox I want the message to fade in slowly. Why doesn't .fadeIn() work in this example? HTML: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" ...
5
votes
1answer
679 views

jQuery show/hide - Question about the delay variable

I'm using the following code to show a box when you mouseover a certain div and have set the delay on the fade out but is there some way of cancelling the fadeOut effect if the user goes back on to ...
4
votes
1answer
77 views

Problem with showing/hiding divs

I am trying to show some random images in a div. My HTML code is like this: <div class="sponsors"> <div id="sponsorsContent"> <div class="spacer"></div> <div ...
4
votes
3answers
3k views

IE shows black border around PNG when faded in

Here is my site: http://smartpeopletalkfast.co.uk/ppr6/ I have PNGs with transparency fadein with jQuery. IE8 (havnt tested with others yet) is showing black borders around the PNGs while they fade ...
4
votes
4answers
114 views

jQuery not getting called in all browsers

Disclaimer: I am new to jQuery. I am trying to implement a fadeOut effect in jQuery for a div block, and then fadeIn effect on two other div blocks. However, these effects are only working in the ...
4
votes
2answers
244 views

Fade in jquery load call

I have a really basic question about jquery. However I don't know how to this so that's why i'm here looking for your help. This is my code: Edit: <a ...
4
votes
2answers
5k views

Android - Blinking image using the Alpha fade animation

I've been struggling for a few days on this, finally just decided to ask. It's so simple I've got to be missing something very basic. I have an XML layout page with an image defined. I have two ...
4
votes
1answer
3k views

Android alpha animation fadein fadeout with delays

I want to do a very simple alpha animation but I cannot find a valid way. The idea is to perform this animation over a view: alpha from 0 to 1 of 1 second hold alpha at 1 for 5 seconds alpha from 1 ...
4
votes
1answer
686 views

jQuery FadeIn text in IE7/IE8 : text aliased during animation

I have trouble to make a good use of jQuery fadeIn() or fadeOut() for text divs in IE(both 7 and 8), as you can see in this example : http://jsbin.com/etatu3/5 (see the code here : ...
4
votes
3answers
5k views

jQuery: Fade in delay on Load

I've stumpled on something queite nice, I've wanted to use in some upcoming project. It's an animated opacity on load, or you can call it fade in. I wondered if you could link some elements ...
4
votes
3answers
10k views

How to do a fadein of an image on an Android Activity screen?

I'd like to display a photo on an Android Activity screen with doing gradual and continual fade-in from pale monotone sepia to the final full color. I know how to do it on a Java Image/BufferedImage ...
4
votes
6answers
1k views

jQuery and php image rotater puzzle

Jquery puzzle I've got a php script that returns the name of random jpg image from a folder. It's nice because I don't have to rename the images at all; I just drop them in the folder and the ...
3
votes
2answers
59 views

jquery fadein simultaneously

I am trying to fade out the existing text of a dialog box, and then fade in an error image simultaneously. How might i do this? Right now I have it (somewhat) working but a few things wrong with it. ...
3
votes
1answer
191 views

jQuery fadeIn fadeOut makes page scroll

I have wordpress enabled website where I want to create a featured block. This featured block will have featured articles fading one after another. I got it working by using the fadeIn and fadeOut ...
3
votes
2answers
78 views

Fadein Hover with fadeout to orginal state or onclick stay in hover state

Hello I'm new to jQuery and Javascript!! What I have to do is: website with jquery and thumbnails. When the page is loaded all the thumbnails have to be on 60% of opacity. As soon as you go with ...
3
votes
6answers
232 views

How can I make this jQuery faster than what I have?

Currently, I am using this script for a type of "tab" system. When one tab is clicked, it hides all the others. They are all div's. But right now, I don't think it's fading fast enough before the ...
3
votes
6answers
868 views

jQuery fade elements from one class to another, on hover

can this be done? for eg. .class1{ background-image:(whatever.jpg) color: #fff; } .class2{ background-image:(whatever2.jpg) color: #999; } can I fade all elements that have class1 to ...
3
votes
3answers
433 views

Video editing with python or command line

I need to perform the following operations in my python+django project: joining videos with same size and bitrate joining videos and images (for the image manipulation I'll use PIL: writing text to ...
3
votes
1answer
976 views

How can I put a Twitter-like fade-in glow around an HTML text input field?

I know a glow around input fields is standard, but Twitter manages to fade it in smoothly. I've been looking around but can't seem to find a solid way to achieve this. How is this done?
3
votes
5answers
1k views

jQuery fade making page jump

For some reason jQuery's fadeIn is making my page jump to the top. Each different div it fades in makes the scroll bar go a different size so I think this might be why 'return false' isn't working. ...
3
votes
2answers
189 views

Why is my jQuery script producing a double fadeIn?

I'm trying to use .fadeIn() to make my navigational hover effects look a little more smooth on the transition. Except I'm getting what I can only describe as a double fade (in and out and back in ...
3
votes
1answer
843 views

Creating a fade-in/fade-out function in MATLAB?

I am looking to create a function that could create a fade-in/fade-out function on a .wav file over a period of five seconds. I found this code on the MATLAB forums but it seems the implementation ...
3
votes
2answers
413 views

Fire a jquery loop to iterate before animation callback is complete?

I am trying to make a sequential animation, where a loop iterates through a list of elements .post's and fades them in slow. The difficult part is having it so that the next iteration begins fading in ...
3
votes
3answers
5k views

jQuery fadeIn fadeOut - IE8 does not fade

Can anyone tell me why a .jpg would not fade in or fade out in IE8. Right now it is just disapearing and reappearing with no opacity changes. I have this set up locally and on a publishing server, ...
3
votes
2answers
982 views

Image Hidden, then on mouse movement Fade-In, Fade-Out and Fade-In again

I am trying to get an image to fade out when there has been no mouse action for 3 seconds and then fades in when the mouse is again moved. I would also be appreciative if anyone could tell me how I ...
3
votes
7answers
7k views

Making images fade in on image load using jquery

I have a page full of images and I want each of them to fade in when loaded. I have the following code which works but seems buggy, basically sometimes not all the image fade in. Does anyone have any ...
3
votes
2answers
8k views

How do you fadeIn and animate at the same time?

Using jQuery I'm creating a basic 'tooltip' animation so that the tooltip will appear in a little animation in which it fades into view as well as move vertically. So far I have this: ...
2
votes
1answer
33 views

jquery show elements incrementally then show in reverse

I would like to show 10 elements (images) incrementally. When the 9th image is displayed, I want to display them again (rotating), but this time in reverse. So, show image 1, 2, 3, 4, 5, 6, 7, 8, 9, ...
2
votes
3answers
71 views

jQuery looping .fadeIn and .fadeOut of p tags within div one at a time

The code below successfully fades in one testimonial for 6 seconds, waits 3 seconds, and then fades it out and moves on to the next. Once it reaches the third testimonial it jumps back to the first. ...
2
votes
6answers
130 views

jquery fade in fade out on hover for multiple elements

I am working on a portfolio page and would like to use jquery to fade in some information over the image when the user hovers over the item. I am quite new to back-end jquery stuff so just starting ...
2
votes
1answer
115 views

fadeIn using $(document).ready( ) Causing a Noticeable Lag

I'm relatively new to javascript and am building a web page. I'm using the Pikachoose slideshow as a banner on the page and I couldn't find a way to get it to fade in on load. When the page loads, the ...
2
votes
4answers
65 views

jQuery fadeIn event?

Is it possible to get some kind of event notifciation when an element has faded in using jQuery? I.e. if there was a 'fadeInEvent' I would try something like $('elements').delegate('selector', ...
2
votes
1answer
33 views

jquery fadeIn class workaround without UI

I can't seem to take what I need from this code and make it work for myself, hoping someone can help. I can not use the Jquery UI and makes hovers so much more difficult than they need to be. I have ...
2
votes
1answer
56 views

fadein/fadeout issue, tried stop but does not work

So all I want to do is fade out a div and fade in another. When i hover a link i want to fadeout prev div and fade in the proper div. everything works fine unless I hover over the links too fast. when ...
2
votes
4answers
138 views

jQuery fadeout child div and fade in the next child div

All, Say I have the following divs: <div id="rotate_container"> <div class="reviews" id="item1">This is item one</div> <div class="reviews" id="item2">This is item ...
2
votes
2answers
56 views

js fade in onLoad with for-loop, styles, and setInterval not working?

Why when calling fadeIn() onLoad does the browser run through the loop immediately. In other words there is an issue with either the setInterval or the Opacityto(). function Opacityto(elem,v){ ...
2
votes
3answers
115 views

jquery fading background images

I'm pretty new to jQuery, but I'm looking for a simple script to loop 3 or 4 background images in a header by fading them in and out. They're transparent pngs, so a lot of the sliders I've tried for ...
2
votes
4answers
137 views

jquery FadeIn one element after FadeOut the previous div?

jQuery(document).ready(function(){ $(".welcome").fadeOut(9500); $(".freelance").fadeIn(10000); $(".freelance").fadeOut(4500); }); I want the welcome message to fadeOut slowly and then ...
2
votes
2answers
171 views

jQuery fadeIn creating white spots / specks on images in IE

This is really driving me up the wall. I've got a client who has to have his site work exactly the same in IE as other browsers that actually work like FF, Chrome and Safari, but I can't seem to get ...
2
votes
3answers
115 views

jQuery not fading text in and out?

I want to display "goodbye" for 1 second, fade it out, replace it with "hello", and then fade back in. Why doesn't this snippetwork? (jQuery is loaded): <div id="foo">x</div> ...
2
votes
1answer
203 views

jquery array image fade background

i need to create an image transition / fader in jquery which simultaneously changes the background colour of the parent container... I need to be able to pass on a 2-dim array containing setd of the ...
2
votes
1answer
178 views

Using .load() with fadeIn() to replace content

Alright I have tried a few different approaches none of witch I'm gratified with so I came to ask. I've got a wonderful side navigation that I created for one web page. I've tried to make the ...
2
votes
3answers
460 views

How do I fade one <div> out with jQuery and fade another <div> in?

I am building my portfolio and I want to create a gallery to display my projects. I have a selection of seven divs containing content that form a tabbed navigation-esque section of my website. As ...
2
votes
1answer
118 views

JQuery fadeIn issue

I have been given the task of converting a Flash animation to JQuery. This is what I am trying to get my Jquery code to do, here is the flash animation: ...
2
votes
2answers
343 views

fadeIn and fade out in jquery?

I want to use .fadeIn() , .fadeOut() for two different function in the same jQuery. For Example: Imagine a form assume the below is radiobuttons: O U.S - if i choose U.S it fadeIn - cities/ ...
2
votes
1answer
628 views

Silverlight ScrollViewer - fade in\out the scrollbar

I have a scrollviewer and I want to animate the way the vertical scrollbar appears. The scrollbar is set to AUTO , so I want it to fade in when needed and fade out when not needed. I know how to drill ...

1 2 3 4 5 10