<!DOCTYPE html>
<html>
<head>
<title>W3.CSS(w3cschool.cn)</title>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<link rel="stylesheet" href="https://7npmedia.w3cschool.cn/w3.css">
</head>
<body>
<div class="w3-container">
<h2>动画折叠栏</h2>
<p>使用任何w3动画类来淡化,缩放或滑动折叠栏内容(w3动画缩放|不透明度|顶部|底部|左|右):</p>
<button onclick="myFunction('Demo1')" class="w3-button w3-block w3-black w3-left-align">折叠栏</button>
<div id="Demo1" class="w3-hide w3-animate-zoom">
<a href="#" class="w3-button w3-block w3-left-align">链接 1</a>
<a href="#" class="w3-button w3-block w3-left-align">链接 2</a>
<a href="#" class="w3-button w3-block w3-left-align">链接 3</a>
</div>
</div>
<script>
function myFunction(id) {
var x = document.getElementById(id);
if (x.className.indexOf("w3-show") == -1) {
x.className += " w3-show";
} else {
x.className = x.className.replace(" w3-show", "");
}
}
</script>
</body>
</html>