Hi
I am just coding in jquery for the first time :script type="text/javascript">
$(document).ready(function(){
$("#appearingduo").fadeIn('slow', function () {
// fade has finished
});
});
</script>
</head>
The syntax is a little confusing, for that reason. on my current build I am trying to fade in an image, it is working, but I would like the fade in to slow down to
say around 2 seconds, I am having trouble making this happen, please help:))))
Ant
Page 1 of 1
Jquery fadeIns
#2
Posted 22 August 2011 - 11:36 AM
The jquery documentation is pretty helpful for this sort of thing: http://api.jquery.com/fadeIn/
To adjust the speed, change 'slow' to a number of milliseconds:
Also, keep in mind that if you don't need any sort of javascript action after the fade has finished, you can drop the "function()" section like this:
To adjust the speed, change 'slow' to a number of milliseconds:
<script type="text/javascript">
$(document).ready(function(){
$("#appearingduo").fadeIn(2000, function () {
// fade has finished
});
});
</script>Also, keep in mind that if you don't need any sort of javascript action after the fade has finished, you can drop the "function()" section like this:
<script type="text/javascript">
$(document).ready(function(){
$("#appearingduo").fadeIn(2000);
});
</script>
Benjamin Falk | Falken Creative : Twitter : KillerSites Screencast Blog
Skills: Photoshop, Illustrator, HTML, CSS, jQuery, PHP and CodeIgniter
Skills: Photoshop, Illustrator, HTML, CSS, jQuery, PHP and CodeIgniter
Share this topic:
Page 1 of 1

Help












