Tagged Questions
The fadeto tag has no wiki summary.
4
votes
3answers
1k views
jQuery hover fadeTo with three div's
I'm using this div fadeTo code from here, which fades one of two divs, depending on hover.
What I'd like to do it add a third option - and a third div called #maindiv - in this way: "If hovering over ...
3
votes
1answer
580 views
Child elements in div won't fadeTo() in IE
This is strange to me. This code:
$(".layover").fadeTo("fast", 0.0);
$(".layover").hover(function() {
$(this).fadeTo("fast", 0.9);
},
function() {
$(this).fadeTo("fast", 0.0);
});
..works just fine ...
3
votes
4answers
2k views
jQuery FadeTo causing pixelated text in IE8 when font-weight: bold
I am fading out, and in a div:
$('.formErrors').fadeTo('fast', 0);
$('.formErrors').fadeTo('slow', 1);
But when I do this in IE 8, it seems this bit of CSS:
.formErrors li { font-weight: bold; }
...
2
votes
1answer
110 views
jQuery Fading effect occuring multiple times
I am trying to write a simple jQuery script to apply fading effect on footer. On mouseover event, it fades in with opacity = 1, and on mouse out event it fades out to opacity 0.01. I have applied this ...
2
votes
2answers
294 views
How to add a fadeIn effect while changing background image using .css in Jquery
Hey guys, Im trying to add a fadein effect while changing my background image using .css in Jquery
I dont really know much about java, hoping someone can help me out here!
The code for changing css ...
1
vote
2answers
35 views
mouseleave function fadeTo initial value (turn back)
I'm doing a background player. When the user clicks the #play button, the main menu fade to 0.1 to not obstruct the view. But he can use the main menu at any time by passing the mouse over it and back ...
1
vote
2answers
107 views
jQuery slideTo toggle starting faded
I want to use jQuery to toggle the opacity of an element between 0.3 and 1.0 on a button click.
The trouble i am having is starting the element off with an opacity of 0.3 and then on the first click, ...
1
vote
3answers
62 views
jQuery fadeTo callback is looping for no apparent reason
The below code works, but for some reason the $('#chart').fadeTo callback seems to create a really weird loop.
function fullViewButton(zoom){
if (zoom == 0){
$('input#fullChart').hide();
} else {
...
1
vote
2answers
81 views
A variation of the jQuery fadeTo bug in IE
Inspired by an article which I read yesterday, I am striving to add a Konami code-induced Easter egg to my portfolio website. It started out as a bit of fun but, as can be the case when IE gets ...
1
vote
3answers
363 views
jQuery: How do I fade-out a list of less frequently used divs, and fade-in on mouseover?
Say you have a bunch of elements on a webpage you don't use much, how can jQuery fade them a little, but only when there is no mouseover? It must fade back on mouseover!
1
vote
2answers
4k views
jQuery hover and fadeTo effect is slow in IE 8
I've been developing my website in both Firefox and IE 8. There's an image hover effect on the main page (as well as in the photography and drawing sections). You can see the code in the source at ...
0
votes
2answers
18 views
jQuery slideToggle not behaving properly when used with fadeTo
I would like to change the opacity of a div and then slide it up or down to view its contents but the sliding animation is behaving very strangely, as can be seen here:
http://jsfiddle.net/NsYtr/
If ...
0
votes
3answers
31 views
Jquery fadeTo on mouseover
I am using a plugin called anything slider and am trying to make the controls fade after 4 seconds (which is working) then change opacity back to 1 on mouseover (not working). Here is what I have so ...
0
votes
0answers
37 views
jQuery: .fadeTo() not working as expected
i've experienced a strange problem with jQuery's .fadeTo:
my html markup is like this:
<div class="container">
<div class="form">
contact form
Name: <input ...
0
votes
2answers
54 views
jquery hover issues
I want to use jquery to create a black fade on hover with text over the black on a horizontal, scalable scrolling images (see attached screenshots). At the minute the images fade opacity instead of ...
0
votes
0answers
16 views
FadeTo Jquery function in Wordpress and issues with other plugins
Is there some fixes for the jQuery Fade function? It seems that it doesn't work with plugin such as the html 5 version of the fb like button, advertising banners, and many other features out there. If ...
0
votes
4answers
41 views
Jquery Issue with fadeTo on hover
So basically I am trying to have div.show fade in on hover and then when you stop hovering, have it fade back to an opacity of 0.
However, I cannot get the div to fade back to 0 when you stop ...
0
votes
1answer
47 views
Changing fadeTo to a slide in Jquery
The standard galeriffic gallery fades between images when the thumbnails are clicked. How can I change the gallery so that instead the image slides off the page to the right, revealing the next image ...
0
votes
1answer
39 views
What causes this strange flashing in my jQuery .fadeTo() effect?
Here's a page with some thumbnails:
http://thenozzle.net/games
What I want is when you hove over one thumbnail, the others fade to black (there's a black div behind each thumb). Hover off, and they ...
0
votes
1answer
54 views
jquery - fadeTo not working in Chrome 16
I'm performing a very simple onmouseover fadeTo like this:
$(document).ready(function() {
$('img#logo-link, a.advert').hover(function() { $(this).fadeTo('fast',0.75) } , function(){ ...
0
votes
0answers
51 views
jQuery fadeTo text disappears in IE
I have a script which creates a "spotlight" effect when you hover over an image. The selected image keeps it's full opacity whilst all of the other images fade out slightly.
The text that accompanies ...
0
votes
2answers
108 views
jQuery Fade image above and change CSS background-image behind
I have multiple icon IMG's listed side by side in a UL with css/background-images.
When you hover over a single icon the IMG fades to 0 and then the css/background-image becomes visible.
I can get ...
0
votes
0answers
20 views
Image FadeIn in Piechart diagram, but only run ONCE, how to set it ACTIVE?
Basically, when the mouse hover a list of text, it will FadeIn an image in the background according & bold the text, then FadeIn another image when the mouse hover another list and so on.
What I ...
0
votes
0answers
122 views
fadeto is not working on IE
jquery part
$(document).ready(function () {
$('.rangea').hover(
function() {
$(this).children('div').stop(true,true).fadeTo(0,1.00);
},
...
0
votes
2answers
76 views
jQuery FadeTo on two elements triggering one div
I have probably simple question: /the code: http://jsfiddle.net/FZufj/8/ /
I have a simple code for a fading menu.
I want the menu to fade after mouse over on both the menu and the 'menu button' ...
0
votes
1answer
307 views
jQuery opacity and fadeTo(); in IE8
this bit dont work:
$(this).stop().fadeTo('slow', 0.4, function() {
$(this).addClass('hidden')
});
so i tested this:
$(this).css('opacity',0.3);
no success in ...
0
votes
2answers
162 views
jQuery .fadeTo(), how to fade not active links inside a menu?
I have an ul li menu which I want to make only the link with the :hover state with the opacity 1.0 the others will be set to something like 0.5. So each time the mouse is over the link it keeps its ...
0
votes
4answers
345 views
jQuery fadeOut doesn't work
$(div1.children().get(0)).fadeTo(0, 0.1);
Doesn't work :( But if I specify fateOut instead of fadeTo, then it works! So how do I make it work? The HTML structure is like this:
<div id="div1">
...
0
votes
0answers
54 views
Add fadeTo to inactive LI
I'm trying to make the inactive LI (the one not selected) have an opacity of 0.5, but the active slide (like the first slide upon page load) have an opacity of 1.0 (100%). Or have all the LIs faded ...
0
votes
1answer
118 views
Weird jQuery behaviour in FF with FadeTo
Greetings.
I'm having a weird problem with jQuery on my website.
I'm trying to emulate webkit transitions on buttons, so that everyone gets the shiny stuff. And as I predicted from google searching, ...
0
votes
5answers
282 views
How to fadeTo() everything except one div?
I am creating a tutorial and want to fade every div on the page apart from the div I want them to see. How can I do this using fadeTo?
I currently have it set to fade the whole body. How can I set it ...
0
votes
1answer
433 views
Fadeout a tiled background image in load using JQuery
I've used JQuery in the past to fade divs in and out successfully. However, I have encountered a situation I can't quite wrap my head around:
I am coding a site for a designer who has based the ...
0
votes
4answers
1k views
jQuery: Can you find the selected element's opacity with jQuery?
I have a filter running on a set of list elements which fades the lesser desirable elements down to 0.25 opacity but I'd love to have their opacity return to 1 and then back down to 0.25 on hover over ...
0
votes
2answers
438 views
Thumbnails fadein fadeout specific div fade issues
I am using this code to hide and show a div based on which thumbnail you rollover;
$(document).ready(function(){
$('div.infodiv').hide();
$(".website_thumbs a").hover(
function(){
...
0
votes
1answer
886 views
jQuery fade not working in IE
http://bit.ly/Veyy5
If you view the above URL in FireFox and try to change any of the search parameters you'll see that the search results portion of the page fades to a low opacity and then fades ...