1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
| <!DOCTYPE html>
<html>
<head>
<style>
p1, p2, p3{font-size:150%; cursor:pointer;}
b2, b3{display:none; }
b1, b2, b3{position:absolute; margin:200px 0 0 500px;}
</style>
<script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<body>
<p1>Show1</p1>
<p2>Show2</p2>
<p3>Show3</p3>
<br><br><br><br>
<b1>display menu 1</b1>
<b2>display menu 2</b2>
<b3>display menu 3</b3>
<script>
$("p1").click(function () {
$("b1").fadeIn("slow");
$("b2").fadeOut("slow");
$("b3").fadeOut("slow");
});
$("p2").click(function () {
$("b1").fadeOut("slow");
$("b2").fadeIn("slow");
$("b3").fadeOut("slow");
});
$("p3").click(function () {
$("b1").fadeOut("slow");
$("b2").fadeOut("slow");
$("b3").fadeIn("slow");
});
</script>
</body>
</html> |
Partager