# 隱藏toggle-模塊
```
toggle的用法 : http://www.w3school.com.cn/jquery/effect_toggle.asp
```
```
<!DOCTYPE html>
<html lang="en">
<head>
? ?<meta charset="UTF-8">
? ?<meta name="viewport"
? ? ? ? ?content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
?
? ?<title>Title</title>
? ?<style>
? ? ? ?div{
? ? ? ? ? ?width: 200px;
? ? ? ? ? ?height: 200px;
? ? ? ? ? ?background-color: red;
? ? ? }
?
? ?</style>
</head>
<body>
?
<button id="btn">來回切換隱藏</button>
?
<div class="box"></div>
?
<!--<script src="js/jquery-3.2.0.js"></script>-->
<script src="js/zepto.min.js"></script>
<script src="js/fx.js"></script>
<script src="js/fx_methods.js"></script>
?
<script>
? ?$(function () {
? ? ? ?$('#btn').on('click',function () {
? ? ? ? ? ?$('.box').toggle(1000);
? ? ? })
? })
</script>
</body>
</html>
```