active questions tagged fade - Stack Overflowmost recent 30 from stackoverflow.com2009-12-05T05:21:13Zhttp://stackoverflow.com/feeds/tag/fadehttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/831018/jquery-crossfading-image-on-hover0jQuery : crossfading image on hoverPeanuts2009-05-06T18:31:12Z2009-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><script type="text/javascript">
$(document).ready(function(){
$('img').mouseover( function() {
$(this).fadeOut(200, function() {
$(this).attr({'src':'http://example/images/image.png'});
if (this.complete) $(this).fadeIn(500);
});
});
});
</script>
</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-ie0sifr fade problems on IEhäns2009-11-26T20:42:23Z2009-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-ff1jquery fade effect not working in FFKyle2009-04-14T15:22:28Z2009-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');
});
});
<div id="show">this is where to show it</div>
</code></pre>
http://stackoverflow.com/questions/1829339/best-way-to-fade-in-out-image0Best way to fade in/out imagemofle2009-12-01T22:17:39Z2009-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-jquery0Best approach to slideup and tabs with jQuerymofle2009-10-28T15:05:24Z2009-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><script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js"></script>
<script type="text/javascript">
$(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;
});
});
</script>
<div id="imgholder"><img src="image.jpg" /></div>
<div id="mainmenu">
<ul>
<li><a rel="#tab1"></a></li>
<li><a rel="#tab2"></a></li>
<li><a rel="#tab3"></a></li>
</ul>
</div>
<div id="container">
<div class="content" id="tab1">
content
</div>
<div class="content" id="tab2">
content
</div>
<div class="content" id="tab3">
content
</div>
</div>
</code></pre>
http://stackoverflow.com/questions/1812118/jquery-help-with-hover-fade-animate-image0JQuery Help with Hover/Fade/Animate Imageunknown (google)2009-11-28T09:47:50Z2009-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><style type="text/css">
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; }
</style>
<script type="text/javascript" src="jquery-1.3.1.min.js"></script>
<script src="jquery.easing.js" type="text/javascript"></script>
<script type="text/javascript">
$(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"});
});
});
</script>
<body>
<div class="menucontainer" style="margin-top:15px;">
<ul class="nav" id="nav1">
<li><a href="#">Home</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Contact Us</a></li>
<li class="bg"><div class="left"></div></li>
</ul>
</div>
</body>
</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-slideshow0How to replace slide effect to fade out/fade in effect on this slideshow?LDam2009-08-31T19:30:44Z2009-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<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<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-replacement0adding fade to jquery image replacementJCHASE112009-11-24T20:08:40Z2009-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-ie0jQuery fade not working in IEShawn Berg2009-11-19T23:24:07Z2009-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-fadein0Jquery fade stop error: jQuery(".box").stop().fadeIn();gsolarino2009-07-16T21:42:07Z2009-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-animation0How to callback the button animation?Jonath Lee2009-11-17T08:00:36Z2009-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><script type="text/javascript">
$(document).ready(function () {
$('#navMenu li').append('<div class="hover"><\/div>');
$('#navMenu li').hover(function() {
$(this).children('div').fadeIn('1000'); },
function() {
$(this).children('div').fadeOut('1000');
})
});
</script>
</code></pre>
http://stackoverflow.com/questions/1725693/fx-on-javascript-how-to-fade-stuff-etc-without-frameworks1Fx on Javascript: How to fade stuff, etc without frameworks?Jahmaica2009-11-12T21:56:23Z2009-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-fader1JavaScript: I'm looking for a lightweight background color (div) faderAndyT2009-11-07T19:03:25Z2009-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-problem0Jquery hover fadeIn/fadeOut problemile2009-10-30T23:17:29Z2009-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-maattachedwindow3Fade in/Fade out for MAAttachedWindowPCWiz2009-10-10T18:20:07Z2009-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-out0Javascript: Fade in and outYourComputerHelpZ2009-10-19T11:44:23Z2009-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><span id="sent"></span>
</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-iphone0How to programmatically alpha fade a textured object in OpenGL ES 1.1 (iPhone)PewterSoft2009-10-15T12:52:32Z2009-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-html1Fading a JLabel that contains htmlSteve McLeod2009-10-07T12:59:20Z2009-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("<html><font color=red>Red</font><font color=blue>Blue</font>");
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 <= 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("<html><font color=red>Red</font><font color=blue>Blue</font>");
</code></pre>
http://stackoverflow.com/questions/1523098/stopping-a-jquery-function-from-acting-multiple-times1Stopping a jquery function from acting multiple timesPHPNooblet2009-10-06T00:43:20Z2009-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-scroll1Fading Element on Scrollunknown (google)2009-09-27T20:59:31Z2009-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-animation0jQuery Tab Fade Animation Brad 2009-08-27T03:09:12Z2009-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><script type="text/javascript">
$(function() {
$('#web-select').tabs({ fx: { opacity: 'toggle', duration:'fast'} });
});
</script>
</code></pre>
http://stackoverflow.com/questions/1440298/jquery-mouseout-timeout0JQuery mouseout timeoutstrangerpixel2009-09-17T17:43:35Z2009-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-image0Screensaver in C++ with fading imagemofle2009-09-16T20:08:08Z2009-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-animation0calling an animation?Dane2009-09-10T00:05:26Z2009-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-out0simple fade in and fade outDane2009-09-10T09:27:51Z2009-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-backwards0fade transition in iphone (forward and backwards)Dane2009-09-09T22:16:09Z2009-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-loop2jQuery cross fading two images on a loop!Cool Hand Luke UK2009-09-06T18:43:55Z2009-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-firefox1Problem with jQuery's fade in/out in FirefoxGaVrA2009-09-04T17:08:45Z2009-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-songs0fade in and out between songs [closed]Panos2009-08-27T12:33:09Z2009-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-append4Using fadein and appendCoughlin2008-11-29T16:38:53Z2009-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>