日期:2014-05-16 浏览次数:20315 次
<!DOCTYPE html>
<html>
<head>
<script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js'></script>
<style type='text/css'>
#bar { position:fixed; left:0; top:0; width:10px; background:red; height:500px; line-height:500px; text-align:right; }
#bar.current { width:50px; }
</style>
<script type='text/javascript'>
function showBar() {
var dis = document.getElementById('bar');
dis.style.width='10px';
dis.onclick = function() {
if(this.style.width!=='10px') {
this.style.width='10px';
this.innerHTML='<';
}
else {
this.style.width='50px';
this.innerHTML='>';
}
};
}
$(function() {
showBar();
});
</script>
</head>
<body>
<div id='bar'><</div>
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
</body>
</html>