-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jquery_4.html
98 lines (79 loc) · 1.93 KB
/
Jquery_4.html
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Jquery 4</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<style>
p.flip {
cursor: pointer;
}
div.panel, p.flip {
line-height: 30px;
margin: auto;
font-size: 16px;
padding: 5px;
text-align: center;
background: #555;
border: solid 1px #666;
color: white;
border-radius: 15px;
}
</style>
<script>
$(document).ready(function(){
$(".flip").click(function(){
//$(".panel").toggle();
$(".panel").fadeToggle();
});
/*
$("p").click(function(){
$(this).hide();
});
*/
/*
$("p").mouseenter(function(){
$(this).hide();
//alert("Đã chạy thành công");
});
*/
/*
$("p").mousedown(function(){
$(this).hide();
//alert("Đã chạy thành công");
});
*/
/*
$("p").mouseup(function(){
$(this).hide();
//alert("Đã chạy thành công");
});
*/
/*
$("p").hover(function(){ // rê chuột
$(this).hide();
//alert("Đã chạy thành công");
});
$("#abc").focus(function(){
$(this).css("background-color","yellow");
});
$("#abc").blur(function(){
$(this).css("background-color","white");
});
*/
});
</script>
</head>
<body>
<input type="text" name="abc" id="abc"/>
<br>
<p> Bấm vào để biến mất </p>
<p> Thẻ test </p>
<p class="flip">Click ẨN - HIỆN</p>
<div class="panel" style="display:block;">
<p>Chào mừng đến với khoá học lập trình front end cơ bản</p>
<p>Hệ thống học lập trình trực tuyến myclass.vn</p>
</div>
</body>
</html>