Panels Slow Fade In

Don Von Alpha Dom
by Don Von Alpha Dom · 3 posts
12 years ago in Layouts
Posted 12 years ago · Author
All IMVU panels fade in over a 2 second period using jQuery. (javascript libary) You can change the time it takes, just replace 2000 with whatever number you want. (It's in milliseconds)

Code
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
  $("*").animate({opacity:1}, 2000); /* Time in milliseconds it takes to fade in */
});
</script>
<style type="text/css">
#aboutme_panel, #contact_panel, #dev_panel, #wishlist_panel, #visitors_panel, #messages_panel, #tagcloud_panel, #stickers_panel, #collect_panel, #room_panel, #rankings_panel, #cool_panel, #gallery_panel, #friends_panel, #streetteam_panel, #blog_panel, #music_panel, #rss_panel, #url_panel, #special_panel,#outfits_panel, #groups_panel, #video_panel, #updates_panel, #slideshow_panel, #badges_panel, #rightColumn { opacity:0; }
</style>
Posted 4 years ago
It is useful, however it’s hard to handle if you are not that good at the java coding.. wish it explained a little bit more about that, but of course it’s still amazing and it works after a few tries. Thanks!
Posted 4 years ago
Once you go the hang of it, you know that it is just about changing the number of seconds whether you want it faster or slower it is up to individual taste..

Create an account or sign in to comment

You need to be a member in order to leave a comment

Sign in

Already have an account? Sign in here

SIGN IN NOW

Create an account

Sign up for a new account in our community. It's easy!

REGISTER A NEW ACCOUNT