Introduction:
Here I will explain how to load webpage content with fade in effect using jquery in asp.net.
Here I will explain how to load webpage content with fade in effect using jquery in asp.net.
Description:
In previous post I explained hide or show div content elements using JQuery and many articles relating to JQuery. Now I will explain how to add fade in effect to webpage using Jquery in asp.net.
In previous post I explained hide or show div content elements using JQuery and many articles relating to JQuery. Now I will explain how to add fade in effect to webpage using Jquery in asp.net.
If
we want to implement fade in effect to webpage in jquery we need to write the
code like as shown below
<script type="text/javascript">
$(document).ready(function()
{
$('#fadediv').fadeIn(2000);
});
</script>
|
In
above script fadediv is the id of the div which
is used to load the inside of div content with fadein effect. If you want sample
check below code