Created
July 12, 2012 18:54
-
-
Save hcmn/3100119 to your computer and use it in GitHub Desktop.
JQuery: Sliding Panel
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
#panel { | |
padding: 50px; | |
height: 100px; | |
width: 500px; | |
text-align: center; | |
font-size: 24px; | |
font-family: Arial; | |
font-weight: bold; | |
background: #EEE; | |
cursor: pointer; | |
-webkit-border-bottom-left-radius: 10px; | |
} | |
#tab { | |
//bottom: -25px; | |
right: 0px; | |
padding: 10px; | |
background: #EEE; | |
font-size: 16px; | |
text-decoration: none; | |
-webkit-border-bottom-right-radius: 10px; | |
-webkit-border-bottom-left-radius: 10px; | |
position: relative; | |
} |
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
<html> | |
<head> | |
<title>Result</title> | |
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js"></script> | |
<link type="text/css" rel="stylesheet" href="panel.css" /> | |
<script type="text/javascript" src="panel.js"></script> | |
</head> | |
<body> | |
<div id="panel"> | |
Awesome hidden sliding panel | |
</div> | |
<a href="#panel" id="tab">Click to show</a> | |
</body> | |
</html> |
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
//Sliding panel is initially hidden with tab hanging from top. Clicking on tab will reveal a sliding panel. | |
//credit: Adi Dahiya, Codecademy | |
$(document).ready(function() { | |
$('#panel').hide(); | |
var $panel = $('#panel'); | |
var $tab = $('#tab'); | |
$tab.toggle( | |
function(event) { | |
//can replace below with $panel.slideDown("slow") | |
$panel.show("slow"); | |
}, | |
function(event) { | |
//can replace below with $panel.slideUp("slow") | |
$panel.hide("slow"); | |
} | |
); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment