active questions tagged fade - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T05:21:13Z http://stackoverflow.com/feeds/tag/fade http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/831018/jquery-crossfading-image-on-hover 0 jQuery : crossfading image on hover Peanuts 2009-05-06T18:31:12Z 2009-12-04T09:24:45Z <p>Hello guys,</p> <p>I'm trying to implement a 'fade into' script which would affect two images :</p> <pre><code>&lt;script type="text/javascript"&gt; $(document).ready(function(){ $('img').mouseover( function() { $(this).fadeOut(200, function() { $(this).attr({'src':'http://example/images/image.png'}); if (this.complete) $(this).fadeIn(500); }); }); }); &lt;/script&gt; </code></pre> <p>This bit of jQuery gives me the following :</p> <p>1 - first the image fades out and disappears 2 - then, from a blank space, it emerges the new one.</p> <p>So I'd like to improve the script in order to get a real 'fade into' effect.</p> <p>There's two great resources I have been exploring by now :</p> <ul> <li><a href="http://malsup.com/jquery/cycle/" rel="nofollow">Cycle Plugin</a> - very cool (I will try to get that cycle effect on hover)</li> <li><a href="http://jqueryfordesigners.com/image-cross-fade-transition/" rel="nofollow">JQuery for Designers</a> cool , but I had a bunch of issues with IE (a strange black pixelated border on the fadeIn).</li> </ul> <p>Thanks very much if someone can point out an eventual extra solution.</p> <p>Jan</p> http://stackoverflow.com/questions/1805562/sifr-fade-problems-on-ie 0 sifr fade problems on IE häns 2009-11-26T20:42:23Z 2009-12-03T22:40:16Z <p>hello,</p> <p>i use a sIFR title in a list on my website. i fade list-items out and in. works fine. but in IE when i fades, the sIFR title suddenly has a black background. but just during the fade-animation. saw that also on other websites...</p> <p>any ideas or former posts? thanks!</p> http://stackoverflow.com/questions/748113/jquery-fade-effect-not-working-in-ff 1 jquery fade effect not working in FF Kyle 2009-04-14T15:22:28Z 2009-12-03T16:56:40Z <p>This piece of code fades the div fine in IE. In Firefox 3.0.8, the fade time goes by and the div disappears instantly. I can't find anyone mentioning this problem.</p> <pre><code> $(function() { $("#show").click(function() { $("#show").fadeOut('slow'); }); }); &lt;div id="show"&gt;this is where to show it&lt;/div&gt; </code></pre> http://stackoverflow.com/questions/1829339/best-way-to-fade-in-out-image 0 Best way to fade in/out image mofle 2009-12-01T22:17:39Z 2009-12-01T22:31:11Z <p>What is the best (least resource heavy) way to fade an image in and out every 20 seconds with a duration of 1 second, against a black background (screensaver), in C# ?</p> <p>(an image about 350x130px).</p> <p>I need this for a simple screensaver that's going to run on some low level computers (xp).</p> <p>Right now I'm using this method against a pictureBox, but it is too slow:</p> <pre><code> private Image Lighter(Image imgLight, int level, int nRed, int nGreen, int nBlue) { Graphics graphics = Graphics.FromImage(imgLight); int conversion = (5 * (level - 50)); Pen pLight = new Pen(Color.FromArgb(conversion, nRed, nGreen, nBlue), imgLight.Width * 2); graphics.DrawLine(pLight, -1, -1, imgLight.Width, imgLight.Height); graphics.Save(); graphics.Dispose(); return imgLight; } </code></pre> http://stackoverflow.com/questions/1637870/best-approach-to-slideup-and-tabs-with-jquery 0 Best approach to slideup and tabs with jQuery mofle 2009-10-28T15:05:24Z 2009-11-29T05:27:06Z <p>I'm creating a page with an image at the top, and a menu below. When the user clicks on on of the 3 menu buttons, the image slideUp and the page scrolls down so the menu is at the top of the page, then the right .content div fades in. The slideUp should only happen the first time the user clicks on of the buttons.<br /><br /></p> <p><b>What the absolute best way to do this with jQuery?</b> (no plugins) <br /><br /></p> <p>I also need to know how I can't prevent it to fade in the page that is already visible if i click the same button twice?</p> <p>I'm using <em>rel</em> instead of <em>href</em>, since the href made the page jump, even with <em>return false</em>.</p> <p>This is what I have so far:</p> <pre><code>&lt;script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js"&gt;&lt;/script&gt; &lt;script type="text/javascript"&gt; $(function(){ imgVisible = true; $('#mainmenu a').click(function(){ var $activeTab = $(this).attr('rel'); if(!imgVisible){ $('html:not(:animated),body:not(:animated)').animate({scrollTop:$('#mainmenu').offset().top-20},500); $('.content').hide(); $($activeTab).fadeIn(); } else{ $('#imgholder').slideUp(500,function(){ imgVisible = false; $('#mainmenu a[rel="'+$activeTab+'"]').click(); }); } return false; }); }); &lt;/script&gt; &lt;div id="imgholder"&gt;&lt;img src="image.jpg" /&gt;&lt;/div&gt; &lt;div id="mainmenu"&gt; &lt;ul&gt; &lt;li&gt;&lt;a rel="#tab1"&gt;&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a rel="#tab2"&gt;&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a rel="#tab3"&gt;&lt;/a&gt;&lt;/li&gt; &lt;/ul&gt; &lt;/div&gt; &lt;div id="container"&gt; &lt;div class="content" id="tab1"&gt; content &lt;/div&gt; &lt;div class="content" id="tab2"&gt; content &lt;/div&gt; &lt;div class="content" id="tab3"&gt; content &lt;/div&gt; &lt;/div&gt; </code></pre> http://stackoverflow.com/questions/1812118/jquery-help-with-hover-fade-animate-image 0 JQuery Help with Hover/Fade/Animate Image unknown (google) 2009-11-28T09:47:50Z 2009-11-28T19:36:23Z <p>Hi guys</p> <p>I would like to create a javascript/jquery so that when I hover an <li> item, 2 or 3 classes are called as a hovering image, since there will be a "left", "middle", and "right" image. The left and right will be fixed width, but the middle must grow according to the size of the remaining width.</p> <p>I tried using the lavalamp effect, however it looks weird stopping the movement functionality, but thats all I could think of/achieve. However then I came across another problem, one that I would like the 'hover' image to fadeIn and fadeOut.</p> <p>You could take a look at this menu, its what I achieved so far - <a href="http://valkesh.000space.com" rel="nofollow">http://valkesh.000space.com</a> </p> <p>Basically the code is the following-</p> <pre><code>&lt;style type="text/css"&gt; ul.nav { list-style:none; overflow:hidden; } ul.nav li { float:left; height:39px; background-color:#666666; padding:0 5px; } ul.nav li.last { -moz-border-radius-topright:9px; -webkit-border-top-right-radius:9px; -moz-border-radius-bottomright:9px; -webkit-border-bottom-right-radius:9px; } ul.nav li.bg { margin:7px 0px 0px 3px; padding-right:8px; position:absolute; z-index:50; left:155px; width:60px; background:url(bg-right.png) no-repeat right top; } ul.nav li .left{ background:url(bg.png) no-repeat left top; height:39px; } ul.nav li a {padding:8px 20px; color:#000000; font-size:18px; font-weight:bold; display:block; text-decoration:none; z-index:100; position:relative; } &lt;/style&gt; &lt;script type="text/javascript" src="jquery-1.3.1.min.js"&gt;&lt;/script&gt; &lt;script src="jquery.easing.js" type="text/javascript"&gt;&lt;/script&gt; &lt;script type="text/javascript"&gt; $(document).ready(function() { $('#nav1 li.bg').css({opacity: 0, visibility: "visible"}); $('#nav1 li a').hover(function() { var offset=$(this).offset(); var thiswidth =$(this).width()+13; $('#nav1 li.bg').stop().animate({left:offset.left+"px",width:thiswidth+"px"},100); $('#nav1 li.bg').css({opacity: 0, visibility: "visible"}).animate({opacity: 100}); }, function() { $('#nav1 li.bg').stop().animate({left:"155px",width:"60px"},100); $('#nav1 li.bg').css({opacity: 0, visibility: "visible"}); }); }); &lt;/script&gt; &lt;body&gt; &lt;div class="menucontainer" style="margin-top:15px;"&gt; &lt;ul class="nav" id="nav1"&gt; &lt;li&gt;&lt;a href="#"&gt;Home&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="#"&gt;Services&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="#"&gt;Contact Us&lt;/a&gt;&lt;/li&gt; &lt;li class="bg"&gt;&lt;div class="left"&gt;&lt;/div&gt;&lt;/li&gt; &lt;/ul&gt; &lt;/div&gt; &lt;/body&gt; </code></pre> <p>I would appreciate if anyone can guide me into at least doing the hover with 2 or 3 images</p> <p>Thanks</p> http://stackoverflow.com/questions/1359024/how-to-replace-slide-effect-to-fade-out-fade-in-effect-on-this-slideshow 0 How to replace slide effect to fade out/fade in effect on this slideshow? LDam 2009-08-31T19:30:44Z 2009-11-27T14:24:26Z <p>Hi guys!</p> <p>I need replace <strong>slide effect</strong> <em>to</em> <strong>fade-out/fade-in effect</strong> on the <em>prev</em> and <em>next</em> slide functions:</p> <pre><code>function animate(dir,clicked){ u = true; switch(dir){ case 'next': t = t+1; m = (-(t*w-w)); current(t); if(o.autoHeight){autoHeight(t);} if(s&lt;3){ if (t===3){$(o.slides,obj).children(':eq(0)').css({left:(s*w)});} if (t===2){$(o.slides,obj).children(':eq('+(s-1)+')').css({position:'absolute',left:(w)});} } $(o.slides,obj).animate({left: m}, o.slidespeed,function(){ if (t===s+1) { t = 1; $(o.slides,obj).css({left:0},function(){$(o.slides,obj).animate({left:m})}); $(o.slides,obj).children(':eq(0)').css({left: 0}); $(o.slides,obj).children(':eq('+(s-1)+')').css({ position:'absolute',left:-w}); } if (t===s) $(o.slides,obj).children(':eq(0)').css({left:(s*w)}); if (t===s-1) $(o.slides,obj).children(':eq('+(s-1)+')').css({left:s*w-w}); u = false; }); break; case 'prev': t = t-1; m = (-(t*w-w)); current(t); if(o.autoHeight){autoHeight(t);} if (s&lt;3){ if(t===0){$(o.slides,obj).children(':eq('+(s-1)+')').css({position:'absolute',left:(-w)});} if(t===1){$(o.slides,obj).children(':eq(0)').css({position:'absolute',left:0});} } $(o.slides,obj).animate({left: m}, o.slidespeed,function(){ if (t===0) { t = s; $(o.slides,obj).children(':eq('+(s-1)+')').css({position:'absolute',left:(s*w-w)}); $(o.slides,obj).css({left: -(s*w-w)}); $(o.slides,obj).children(':eq(0)').css({left:(s*w)}); } if (t===2 ) $(o.slides,obj).children(':eq(0)').css({position:'absolute',left:0}); if (t===1) $(o.slides,obj).children(':eq('+ (s-1) +')').css({position:'absolute',left:-w}); u = false; }); break; case 'fade': t = [t]*1; m = (-(t*w-w)); current(t); if(o.autoHeight){autoHeight(t);} $(o.slides,obj).children().fadeOut(o.fadespeed, function(){ $(o.slides,obj).css({left: m}); $(o.slides,obj).children(':eq('+(s-1)+')').css({left:s*w-w}); $(o.slides,obj).children(':eq(0)').css({left:0}); if(t===s){$(o.slides,obj).children(':eq(0)').css({left:(s*w)});} if(t===1){$(o.slides,obj).children(':eq('+(s-1)+')').css({ position:'absolute',left:-w});} $(o.slides,obj).children().fadeIn(o.fadespeed); u = false; }); break; default: break; } }; </code></pre> <p>I had tried, but the auto restart didn't work!</p> <p>You can view the <strong>documentation</strong> and download the complete code with the examples in this link: <a href="http://github.com/nathansearles/loopedSlider/tree/master" rel="nofollow">http://github.com/nathansearles/loopedSlider/tree/master</a></p> <p><strong>Please help me!</strong> <em>(Sorry for my bad english!)</em></p> http://stackoverflow.com/questions/1792610/adding-fade-to-jquery-image-replacement 0 adding fade to jquery image replacement JCHASE11 2009-11-24T20:08:40Z 2009-11-25T03:30:29Z <p>Hello- </p> <p>Im creating a nav that uses jquery to replace the image on rollover. Here is the code I am using:</p> <p><a href="http://peps.ca/blog/easy-image-rollover-script-with-jquery/" rel="nofollow">http://peps.ca/blog/easy-image-rollover-script-with-jquery/</a></p> <p>basically, you add a suffix (_o) to the filename and when you rollover the src, jquery replaces it with the (_o).png. I want to add fade so when there is a rollover, the transition isn't instant, rather there is a quick, elegant fade. Any ideas?</p> http://stackoverflow.com/questions/1767302/jquery-fade-not-working-in-ie 0 jQuery fade not working in IE Shawn Berg 2009-11-19T23:24:07Z 2009-11-19T23:40:57Z <p><a href="http://bit.ly/Veyy5" rel="nofollow">http://bit.ly/Veyy5</a></p> <p>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 back in once the results are received. In IE this doesn't fade at all. Any ideas?</p> <p>Thanks,</p> <p>Shawn</p> http://stackoverflow.com/questions/1140486/jquery-fade-stop-error-jquery-box-stop-fadein 0 Jquery fade stop error: jQuery(".box").stop().fadeIn(); gsolarino 2009-07-16T21:42:07Z 2009-11-19T03:00:03Z <p>This code is not working, what im doing wrong?</p> <p>Tnks.</p> <pre><code> var x; x=jQuery(document); x.ready(inicializarEventos); function inicializarEventos() { var x; x=jQuery(".Caja2"); x.hover(entraMouse,saleMouse); } function entraMouse() { jQuery(".Caja2").stop().fadeOut(); } function saleMouse() { jQuery(".Caja2").stop().fadeIn(); } </code></pre> http://stackoverflow.com/questions/1747270/how-to-callback-the-button-animation 0 How to callback the button animation? Jonath Lee 2009-11-17T08:00:36Z 2009-11-17T08:03:11Z <p>I found a nice menu which have a background image fade out, as shown here</p> <p><a href="http://www.queness.com/post/411/create-an-attractive-jquery-menu-with-fadein-and-fadeout-effect" rel="nofollow">http://www.queness.com/post/411/create-an-attractive-jquery-menu-with-fadein-and-fadeout-effect</a></p> <p>But however when I rapidly mouse over the button for few times, it will keep animate non stop. I was informed that I need to add in a "callback". I'm not a javascript programmer. Please help, the code is as below</p> <pre><code>&lt;script type="text/javascript"&gt; $(document).ready(function () { $('#navMenu li').append('&lt;div class="hover"&gt;&lt;\/div&gt;'); $('#navMenu li').hover(function() { $(this).children('div').fadeIn('1000'); }, function() { $(this).children('div').fadeOut('1000'); }) }); &lt;/script&gt; </code></pre> http://stackoverflow.com/questions/1725693/fx-on-javascript-how-to-fade-stuff-etc-without-frameworks 1 Fx on Javascript: How to fade stuff, etc without frameworks? Jahmaica 2009-11-12T21:56:23Z 2009-11-12T22:46:05Z <p>Hi,</p> <p>I would like to learn how to do fade, and similar effects on Javascript. I often get answers, like why not use Jquery, mootools, etc ? Well, I want to learn how stuff works, then I wont mind using any of these frameworks.</p> <p>I'm currently learning about making changes on the DOM, so, I've read a lot of stuff on this theme. Also, I've read about Reflow, still, I didnt find any cool stuff on Repaint, but, I'll keep searching.</p> <p>From seeing source files etc, I see a few methods, that I dont know if they've created or are Core methods of JS.</p> <p>My question is, is there any resource where I can learn all this neat stuff like smooth position change, fading elements trough opacity or whatever, etc ?</p> <p>Thanks for your atention and knowledge!</p> <p>Have a nice day ;)</p> http://stackoverflow.com/questions/1694066/javascript-im-looking-for-a-lightweight-background-color-div-fader 1 JavaScript: I'm looking for a lightweight background color (div) fader AndyT 2009-11-07T19:03:25Z 2009-11-08T05:37:30Z <p>Does anyone know of a lightweight (small file size) HTML background color fader?</p> <p>Something like the below pseudo-JavaScript</p> <pre><code>fadeDiv('div_element_to_fade','hex_start_color','hex_end_color','speed_of_fade'); </code></pre> http://stackoverflow.com/questions/1652747/jquery-hover-fadein-fadeout-problem 0 Jquery hover fadeIn/fadeOut problem ile 2009-10-30T23:17:29Z 2009-11-04T22:21:29Z <p><a href="http://www.izrada-weba.com/orso" rel="nofollow">http://www.izrada-weba.com/orso</a> On mouseover on link "NENATKRIVENA TERASA..." submenu and image fade in together. Submenu is faded using some downloaded script and image above is fading using my code:</p> <pre><code>$(document).ready(function () { $("#slika1").hide(); $("#test,#submenu2").hover( function () { $("#slika1").fadeIn(); }, function () { $("#slika1").fadeOut(); } ); }); </code></pre> <p>When mouse is over link than image fades in, and when mouse is moved to submenu image fades out and than fades in again... I know why is that so but I don't know how to make it not fadeout when moving mouse directly from link to submenu. Are there any solutions for this?</p> <p>Thanks, Ile</p> http://stackoverflow.com/questions/1548682/fade-in-fade-out-for-maattachedwindow 3 Fade in/Fade out for MAAttachedWindow PCWiz 2009-10-10T18:20:07Z 2009-10-19T22:29:52Z <p>I'm using Matt Gemmell's MAAttachedWindow (<a href="http://mattgemmell.com/source" rel="nofollow">http://mattgemmell.com/source</a>) with an NSStatusItem to display a custom view in the menu bar. I'm confused as to how to get it to fade in and fade out. Normally I'd do something like this:</p> <pre><code>[window makeKeyAndOrderFront:self]; [[window animator] setAlphaValue:1.0]; </code></pre> <p>and to fade out:</p> <pre><code>[[window animator] setAlphaValue:0.0]; </code></pre> <p>However this code seems to have no effect with MAAttachedWindow. Any ideas?</p> <p>Thanks</p> http://stackoverflow.com/questions/1588226/javascript-fade-in-and-out 0 Javascript: Fade in and out YourComputerHelpZ 2009-10-19T11:44:23Z 2009-10-19T12:19:09Z <p>Hello,</p> <p>i have this PHP based doc (chatbox) where you can type your message and send it.</p> <p>Now, i have this fade animation where a message comes in when a message is send. Looks like this:</p> <p>Javascript:</p> <pre><code>function stateChanged1() { if (xmlHttp1.readyState==4) { document.getElementById("sent").innerHTML="Sent!"; document.writeform.message.value=""; chat(); } } </code></pre> <p>in the body:</p> <pre><code>&lt;span id="sent"&gt;&lt;/span&gt; </code></pre> <p>The problem is then it isnt fading out. What do i have to add to the code and where?</p> http://stackoverflow.com/questions/1572175/how-to-programmatically-alpha-fade-a-textured-object-in-opengl-es-1-1-iphone 0 How to programmatically alpha fade a textured object in OpenGL ES 1.1 (iPhone) PewterSoft 2009-10-15T12:52:32Z 2009-10-16T17:30:41Z <p>I've been using OpenGL ES 1.1 on the iPhone for 10 months, and in that time there is one seemingly simple task I have been unable to do: programmatically fade a textured object. To keep it simple: how can I alpha fade, under code control, a simple 2D triangle that has a texture (with alpha) applied to it. I would like to fade it in/out while it is over a scene, not a simple colored background. So far the only technique I have to do this is to create a texture with multiple pre-faded copies of the texture on it. (Yuck)</p> <p>As an example, I am unable to do this using Apple's GLSprite sample code as a starting point. It already textures a quad with a texture that has its own alpha. I would like to fade that object in and out.</p> http://stackoverflow.com/questions/1531494/fading-a-jlabel-that-contains-html 1 Fading a JLabel that contains html Steve McLeod 2009-10-07T12:59:20Z 2009-10-07T13:38:58Z <p>I can fade out a normal JLabel using a Timer, as follows:</p> <pre><code> public static void main(String[] args) { JFrame frame = new JFrame(); // final JLabel label = new JLabel("&lt;html&gt;&lt;font color=red&gt;Red&lt;/font&gt;&lt;font color=blue&gt;Blue&lt;/font&gt;"); final JLabel label = new JLabel("Hello"); label.setOpaque(true); label.setBackground(Color.WHITE); frame.getContentPane().add(label); frame.pack(); frame.setLocationRelativeTo(null); frame.setVisible(true); final Timer timer = new Timer(100, null); final int steps = 25; timer.addActionListener(new ActionListener() { int count = 0; public void actionPerformed(ActionEvent e) { if (count &lt;= steps) { float intensity = count / (float) steps; label.setForeground(new Color(intensity, intensity, intensity)); count++; } else { timer.stop(); } } }); timer.start(); } </code></pre> <p>How can I make this also work with a JLabel that contains html, as per the commented-out line? </p> <pre><code> final JLabel label = new JLabel("&lt;html&gt;&lt;font color=red&gt;Red&lt;/font&gt;&lt;font color=blue&gt;Blue&lt;/font&gt;"); </code></pre> http://stackoverflow.com/questions/1523098/stopping-a-jquery-function-from-acting-multiple-times 1 Stopping a jquery function from acting multiple times PHPNooblet 2009-10-06T00:43:20Z 2009-10-06T01:45:10Z <p>I have a toggle fade effect but when you click the button multiple times it fades in and out more than once. (So if i click the fade id 20 times fast it will fade in and out multiple times) How would I stop this and make it so that you can only toggle the fade when the animation was done? I tried getting the current value and making a if statement but it didn't work :*(</p> <p>Thanks</p> <pre><code>jQuery.fn.fadeToggle = function(speed, easing, callback) { return this.animate({opacity: 'toggle'}, speed, easing, callback); }; $(document).ready(function() { $('.open').click(function() { $('#fadeMe').next().fadeToggle('slow'); }); }); </code></pre> http://stackoverflow.com/questions/1484467/fading-element-on-scroll 1 Fading Element on Scroll unknown (google) 2009-09-27T20:59:31Z 2009-09-27T22:06:53Z <p>I'm curious how I can create a DIV (or anything really) that I can fade (or change opacity of) when a user scrolls down the page. This DIV would sit at the top of the page, but only be clearly visible when at the very top of the page.</p> <p>Additionally, it would be ideal if I I could have this element fade back in onmouseover, regardless of the current scrolled position on the page.</p> http://stackoverflow.com/questions/1338662/jquery-tab-fade-animation 0 jQuery Tab Fade Animation Brad 2009-08-27T03:09:12Z 2009-09-22T14:18:09Z <p>I have implemented jQuery tabs and am using the opacity technique to fade one tab out and then fade another in. I would like to have the second image fade over the first and then hide the first image. That way the background behind the tabs will not be shown. Please advise.</p> <p>Current jQuery code:</p> <pre><code>&lt;script type="text/javascript"&gt; $(function() { $('#web-select').tabs({ fx: { opacity: 'toggle', duration:'fast'} }); }); &lt;/script&gt; </code></pre> http://stackoverflow.com/questions/1440298/jquery-mouseout-timeout 0 JQuery mouseout timeout strangerpixel 2009-09-17T17:43:35Z 2009-09-18T14:28:19Z <p>Similar problems have been dealt with before but I believe mine's slightly different owing to the use of the bind() function. Anyhow...</p> <pre><code>$('.overlay').bind("mouseenter",function(){ $(this).fadeTo('slow', 0); }).bind("mouseleave",function(){ setTimeout(function() { $(this).fadeTo('slow', 1); }, 2000); }); </code></pre> <p>I want to fade out the overlay on "mouseenter", but only fade it back in 2000ms after "mouseleave".</p> <p>I have an additional question: When the .overlay div fades out, I need to be able to click on what's beneath it i.e. I need the div to disappear completely or move down the z-index stack. However, if I try adding this in, the script thinks the mouse has left the .overlay div, so the .overlay fades back in. </p> <p>For the same reason I can't use fadeOut() and fadeIn().</p> http://stackoverflow.com/questions/1435185/screensaver-in-c-with-fading-image 0 Screensaver in C++ with fading image mofle 2009-09-16T20:08:08Z 2009-09-17T16:54:32Z <p>How can I make a screensaver in C++ that fades an image in and out at random places on the screen with a specified time delay on the fade out?</p> <p>Multimonitor support would be awesome.</p> <p>If you have a working code or know where I can get it, it would be great. Otherwise point me in the right direction. I'm looking for a method that has a smooth and not laggy og flickery fade. The screensaver is for Windows XP.</p> <p>I dont know C++, but I do know AS3, Javascript, and PHP. So I was hoping to relate some of that knowledge to C++.</p> <p>What should I use to compile it?</p> http://stackoverflow.com/questions/1402774/calling-an-animation 0 calling an animation? Dane 2009-09-10T00:05:26Z 2009-09-10T12:01:10Z <p>I have placed the following code in my program</p> <pre><code>CATransition *animation = [CATransition animation]; [animation setDuration:0.5]; [animation setType:kCATransitionFade]; [animation setSubtype:kCATransitionFromLeft]; [animation setTimingFunction:[CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut]]; [[theWindow layer] addAnimation:animation forKey:@"SwitchToView1"]; </code></pre> <p>Everything works great but there is no animation when I build the project into the simulator.</p> <p>Where and how do I call this animation? once I get this then I can submit it to the app store!</p> http://stackoverflow.com/questions/1404266/simple-fade-in-and-fade-out 0 simple fade in and fade out Dane 2009-09-10T09:27:51Z 2009-09-10T09:33:08Z <p>I have one view controller with a UIscrollview built in. There are a total of 42+ images and i'm trying to fade each image into the next</p> <p>I know i have to use something called "begin animation and commit animation."</p> <p>I have tried tirelessy to get this to work. Could someone post up the code for me here and have me attempt it one more time? i'm willing to even pay someone for a phone consultation since it's so fustrating. If someone could help me out that would be awesome.</p> <p>Also, do i have to add anything to my delegate files to get this to work? i'm thinking these few lines of code and i'm good to go right?</p> <p>thanks </p> http://stackoverflow.com/questions/1402427/fade-transition-in-iphone-forward-and-backwards 0 fade transition in iphone (forward and backwards) Dane 2009-09-09T22:16:09Z 2009-09-09T23:26:03Z <p>Hey guys, </p> <p>I'm almost done coding my project and I have come across 1 to 2 problems with the fading. Here is what my code looks like </p> <pre><code>CATransition *animation = [CATransition animation]; [animation setDuration:0.5]; [animation setType:kCATransitionFade]; [animation setSubtype:kCATransitionFromRight, kCATransitionFromLeft]; [animation setTimingFunction:[CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut]]; </code></pre> <p>It's telling me to set a subtype. I basically want to animate going back and going forward. I know i'm pretty close. What else am i missing from the code?</p> http://stackoverflow.com/questions/1386374/jquery-cross-fading-two-images-on-a-loop 2 jQuery cross fading two images on a loop! Cool Hand Luke UK 2009-09-06T18:43:55Z 2009-09-06T19:39:08Z <p>Hi, I am having trouble working out how to get a simple fade in fade out loop to work. I am pretty new to jQuery as you can maybe tell. I have had a go at it but now it’s taking too long to work out so I thought I would ask for some help.</p> <p>What I want to do: </p> <p>I have two Images, id's #img1 and #img2. I want image 1 to fadeIn then wait for lets say 6 seconds then fade out. I have tried the .wait function but it just stopped the little I had from working. I managed to get the first image to fade in and then out but with no wait in between. I then want to start fading image 2 in while image 1 is fading out then Image 2 to wait then fade out while image 1 fades in again and loop forever! Hope that makes sense.</p> <pre><code> $(document).ready(function(){ $('#img1').hide() .load(function () { $(this).fadeIn(4500) .fadeOut(4500); $('#img2').hide().wait(9000) .load(function () { $(this).fadeIn(4500) .fadeOut(4500); }); </code></pre> <p>Cheers, its driving me crazy. Ps can you try and give a little explanation to what is going on in you answer. Thanks</p> http://stackoverflow.com/questions/1380480/problem-with-jquerys-fade-in-out-in-firefox 1 Problem with jQuery's fade in/out in Firefox GaVrA 2009-09-04T17:08:45Z 2009-09-05T16:19:14Z <p>I already asked here with no luck, but feel free to read it:</p> <p><a href="http://groups.google.com/group/jquery-en/browse%5Fthread/thread/fdf7a584b30d4bb9" rel="nofollow">http://groups.google.com/group/jquery-en/browse%5Fthread/thread/fdf7a584b30d4bb9</a></p> <p>Hmm check out my site:</p> <p><a href="http://www.crtaci.info/" rel="nofollow">http://www.crtaci.info/</a></p> <p>on top-right position i have search field. When you move your mouse over there small text shows up that says:</p> <p>Napredna pretraga</p> <p>Now, for some reason those letters change color to like yellow for very short period of time in ff 3.5 and to some strange color in safari 4.0.2 for win. In ie8, opera and chrome it works just the way it should, white letters stay white during the animation.</p> <p>Any sugestions?</p> <p>here is function that do this job ;)</p> <pre><code>$('#header_search').hover(function() { $('#naprednaPretraga').stop({clearQueue:true}).show().animate({"opacity" : 1},500); }, function(){ $('#naprednaPretraga').stop({clearQueue:true}).animate({"opacity" : 0},500,function() { $('#naprednaPretraga').hide(); }); }); </code></pre> http://stackoverflow.com/questions/1340781/fade-in-and-out-between-songs 0 fade in and out between songs [closed] Panos 2009-08-27T12:33:09Z 2009-08-27T12:33:09Z <p>What is your opinion when blending audio tracks on which fade method to use? or is it better to use volume envelopes in order to achieve better result in human earing and sound level (0db)- (not clipping)?</p> http://stackoverflow.com/questions/327682/using-fadein-and-append 4 Using fadein and append Coughlin 2008-11-29T16:38:53Z 2009-08-24T12:04:04Z <p>I am loading JSON data to my page and using appendTo() but I am trying to fade in my results, any ideas?</p> <pre><code>$("#posts").fadeIn(); $(content).appendTo("#posts"); </code></pre> <p>I saw that there is a difference between append and appendTo, on the documents.</p> <p>I tried this as well:</p> <pre><code>$("#posts").append(content).fadeIn(); </code></pre> <p><strong><em>I got it, the above did the trick!</em></strong></p> <p>But I get "undefined" as one of my JSON values.</p> <p>Ryan</p>