In this post I will explain a technique for creating remote links on your web page. It's easy using jQuery to create these effects.
![]() | |
Finished Look |
Click ((here)) for a demo of the finished remote link page.
First Step:
Create containers for the links and images to be manipulated with jQuery.
Example:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id='menu_slideimages'> | |
<div id='menu_slideimages_inner'> | |
<div id='menu_initial'> | |
<div id='menu_initial_inner'> | |
<div><img src="initial.jpg" /></div> | |
</div><!--end menu_initial_inner--> | |
</div><!--end-menu-initial--> | |
<div><img src="about.jpg" /></div> | |
<div><img src="projects.jpg" /></div> | |
<div><img src="blog.jpg" /></div> | |
<div><img src="home.jpg" /></div> | |
</div><!--end-menu_slideimages_inner--> | |
</div><!--end-menu_slideimages--> |
Arrange the container using CSS. Add the "overflow: hidden" property in this slide-show effect to keep the other images from showing.
Example:
Create a jQuery script to slide the divs containing the images up in the stacking order.
Example:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var slideimages = $('#menu_slideimages_inner'); | |
var initial = $('#menu_slideimages_inner #menu_initial_inner'); | |
$('#top_menu .home').click(function () { | |
initial.css('display', 'none'); | |
slideimages.stop().animate({ | |
top: '-240px' | |
}, 300); | |
initial.css('display', 'none'); | |
}); |
Click ((here)) for the project code.