Сообщение от Ahterknica
|
Подскажите, какими свойствами мне лучше воспользоваться?
|
Да хоть вот этими...
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<!--
<link rel="stylesheet" type="text/css" href="tmp.css" />
-->
<style type="text/css">
* {
margin: 0;
padding: 0;
}
#menu {
position: relative;
background-color: green;
}
#menu > p {
height: 20px;
margin-right: 50px;
padding: 5px;
overflov: hidden;
}
#menu > button {
position: absolute;
top: 0;
right: 0;
bottom: 0;
width: 30px;
}
</style>
<script type="text/javascript">
$(document).ready(function (){
$('#menu > button').click(function (){
var o=$(this);
var w,o;
if (o.text()=='<<') {
o.text('>>');
w='30px';
o=0;
} else {
o.text('<<');
w='100%';
o=1;
};
$("#menu").animate({
width: w
});
$("#menu > p").animate({
opacity: o
});
});
});
</script>
</head>
<body>
<div id='menu'>
<p>Это панель меню</p>
<button><<</button>
</div>
<script>
</script>
</body>
</html>