前端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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<style type="text/css">
#i1{
width: 180px;
height: 30px;
padding-left: 10px;
/*去掉默认带的外线框*/
outline: none;
/*重新设置边框*/
border:1px solid lightgray;
border-radius: 6px;
}
/*焦点选择器 只有标签获取焦点才会执行*/
#i1:focus{
border-color: skyblue;
}

.one{
width: 300px;
height: 120px;
background-color: skyblue;
display: none;
}

#i1:focus+.one{
display: block;
}
</style>
</head>
<body>

<input type="text" id="i1" placeholder="请输入账号"/>
<div class="one">
这是弹框
</div>
<h1>大标题 测试</h1>
</body>
</html>

运行结果:


前端HTML弹窗的实现
http://ultracode.cn/2020/10/19/HTML/前端HTML弹窗的实现/
作者
Win
发布于
2020年10月19日
许可协议