-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSlideEffect.html
More file actions
43 lines (43 loc) · 1010 Bytes
/
SlideEffect.html
File metadata and controls
43 lines (43 loc) · 1010 Bytes
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 lang="en">
<head>
<meta charset="UTF-8">
<title>SlideEffect</title>
<style type = "text/css">
.more {
padding: 3px;
border: 1px solid black;
width: 200px;
}
.more-options {
font-size: 10pt;
}
</style>
<script src="jquery-3.2.1.min.js"></script>
<script>
$(document).ready(function() {
$('div.more').hide();
$('a.more-options').click(function() {
if ($('div.more').is(':hidden'))
$('div.more').slideDown('slow');
else
$('div.more').slideUp('slow');
return false;
});
});
</script>
</head>
<body>
<div id = "search">
<h2>滑動顯示搜尋選項</h2>
<input type="text" width="50" />
<input type="submit" value="搜尋"/><br/>
<a href="#" class="more-options">更多搜尋選項</a>
<div class = "more">
<input type="radio" name = "category">中文網頁<br/>
<input type="radio" name = "category">英文網頁<br/>
<input type="checkbox" name = "language">包含繁簡<br/>
</div>
</div>
</body>
</html>