Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
221900204-陈鸿越
VueJS_01
提交
eefd7c09
V
VueJS_01
项目概览
221900204-陈鸿越
/
VueJS_01
与 Fork 源项目一致
Fork自
inscode / VueJS
通知
1
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
V
VueJS_01
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
eefd7c09
编写于
4月 22, 2023
作者:
6
641c55cabd0a9b5151c42173
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Auto commit
上级
d580470e
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
215 addition
and
94 deletion
+215
-94
index.html
index.html
+34
-11
src/assets/main.css
src/assets/main.css
+181
-83
未找到文件。
index.html
浏览文件 @
eefd7c09
...
@@ -7,17 +7,40 @@
...
@@ -7,17 +7,40 @@
<title>
Vite App
</title>
<title>
Vite App
</title>
</head>
</head>
<body>
<body>
<!-- <div id="app"></div> -->
<div
class=
"container"
>
<div
id=
"app1"
>
{{message}}
</div>
<div
class=
"from-box"
>
<!-- 注册 -->
<div
class=
"register-box hidden"
>
<h1>
register
</h1>
<input
type=
"text"
placeholder=
"用户名"
id=
"reg_user"
>
<input
type=
"number"
placeholder=
"手机号"
id=
"reg_phone"
>
<input
type=
"password"
placeholder=
"密码"
>
<input
type=
"password"
placeholder=
"确认密码"
>
<button
id=
"reg_submit"
>
注册
</button>
</div>
<!-- 登录 -->
<div
class=
"login-box"
>
<h1>
login
</h1>
<input
type=
"text"
placeholder=
"用户名"
>
<input
type=
"password"
placeholder=
"密码"
>
<button>
登录
</button>
</div>
</div>
<div
class=
"con-box left"
>
<img
src=
"./img/1.png"
alt=
""
>
<p>
已有账号
</p>
<button
id=
"login"
>
去登录
</button>
</div>
<div
class=
"con-box right"
>
<img
src=
"./img/1.png"
alt=
""
>
<p>
没有账号?
</p>
<button
id=
"register"
>
去注册
</button>
</div>
</div>
<script
type=
"module"
src=
"/src/main.js"
></script>
<script
type=
"module"
src=
"/src/main.js"
></script>
<script>
var
vm
=
new
Vue
({
el
:
"
#app1
"
,
//model:数据
data
:{
message
:
"
hello,vue
"
}
});
</script>
</body>
</body>
</html>
</html>
src/assets/main.css
浏览文件 @
eefd7c09
...
@@ -8,88 +8,186 @@
...
@@ -8,88 +8,186 @@
font-weight
:
normal
;
font-weight
:
normal
;
}
}
a
,
*
{
.green
{
/* 初始化 */
text-decoration
:
none
;
padding
:
0
;
color
:
hsla
(
160
,
100%
,
37%
,
1
);
margin
:
0
;
transition
:
0.4s
;
}
@media
(
hover
:
hover
)
{
a
:
hover
{
background-color
:
hsla
(
160
,
100%
,
37%
,
0.2
);
}
}
@media
(
min-width
:
1024px
)
{
body
{
display
:
flex
;
place-items
:
center
;
}
#app
{
display
:
grid
;
grid-template-columns
:
1
fr
1
fr
;
padding
:
0
2rem
;
}
body
{
margin
:
0
;
padding
:
0
;
background
:
#34495e
;
height
:
100vh
;
display
:
flex
;
/* 设为Flex布局以后,子元素的float、clear和vertical-align属性将失效。 */
align-items
:
center
;
justify-content
:
center
;
/* font-family: "montserrat" ,sans-serif; */
/* 在最后加一个sans-serif,这样如果所列出的字体都不能用,则默认的sans-serif字体能保证调用 */
}
.loading
{
width
:
200px
;
height
:
200px
;
box-sizing
:
border-box
;
border-radius
:
50%
;
border-top
:
10px
solid
#e74c3c
;
position
:
relative
;
animation
:
a1
2s
linear
infinite
;
}
.loading
::before
,
.loading
::after
{
content
:
' '
;
width
:
200px
;
height
:
200px
;
position
:
absolute
;
left
:
0
;
top
:
-10px
;
box-sizing
:
border-box
;
border-radius
:
50%
;
}
.loading
::before
{
border-top
:
10px
solid
#e67e22
;
transform
:
rotate
(
120deg
);
}
.loading
::after
{
border-top
:
10px
solid
#3498db
;
transform
:
rotate
(
240deg
);
}
.loading
span
{
position
:
absolute
;
width
:
200px
;
height
:
200px
;
color
:
#fff
;
text-align
:
center
;
line-height
:
200px
;
animation
:
a2
2s
linear
infinite
;
}
@keyframes
a1
{
to
{
transform
:
rotate
(
360deg
);
}
}
@keyframes
a2
{
to
{
transform
:
rotate
(
-360deg
);
}
}
}
html
,
body
{
/* 100%的窗口高度 */
height
:
100vh
;
/* 弹性布局 水平+垂直居中 */
display
:
flex
;
align-items
:
center
;
justify-content
:
center
;
/* 渐变背景 */
background
:
linear-gradient
(
200deg
,
#f3e7e9
,
#e3eeff
);
-ms-overflow-style
:
none
;
}
input
::-webkit-outer-spin-button
,
input
::-webkit-inner-spin-button
{
-webkit-appearance
:
none
;
}
.container
{
background-color
:
#fff
;
width
:
650px
;
height
:
415px
;
/* 阴影 */
box-shadow
:
5px
5px
5px
rgba
(
0
,
0
,
0
,
0.1
);
/* 相对定位 */
position
:
relative
;
}
.from-box
{
/* 绝对定位 */
position
:
absolute
;
top
:
-10%
;
left
:
5%
;
background-color
:
#d3b7d8
;
width
:
320px
;
height
:
500px
;
border-radius
:
5px
;
box-shadow
:
2px
0
10px
rgba
(
0
,
0
,
0
,
0.1
);
/* 弹性布局 水平+垂直居中 */
display
:
flex
;
align-items
:
center
;
justify-content
:
center
;
z-index
:
2
;
/* 动画过渡 加速之后 减速 */
transition
:
0.5s
ease-in-out
;
}
.register-box
,
.login-box
{
/* 弹性布局 垂直排列 */
display
:
flex
;
flex-direction
:
column
;
align-items
:
center
;
width
:
100%
;
}
.hidden
{
display
:
none
;
transition
:
0.5s
;
}
h1
{
text-align
:
center
;
margin-bottom
:
25px
;
/* 大写字母 */
text-transform
:
uppercase
;
color
:
#fff
;
/* 字间距 */
letter-spacing
:
5px
;
}
input
{
background-color
:
transparent
;
width
:
70%
;
color
:
#fff
;
border
:
none
;
/* 下边框样式 */
border-bottom
:
1px
solid
rgba
(
255
,
255
,
255
,
0.4
);
padding
:
10px
0
;
text-indent
:
10px
;
margin
:
8px
0
;
font-size
:
14px
;
/* 字间距 */
letter-spacing
:
2px
;
}
input
::placeholder
{
color
:
#fff
;
}
input
:focus
{
color
:
#a262ad
;
outline
:
none
;
border-bottom
:
1px
solid
#a262ad80
;
transition
:
0.5s
;
}
input
:focus::placeholder
{
opacity
:
0
;
}
.from-box
button
{
width
:
70%
;
margin-top
:
35px
;
background-color
:
#f6f6f6
;
outline
:
none
;
border-radius
:
8px
;
padding
:
13px
;
color
:
#a262ad
;
letter-spacing
:
2px
;
border
:
none
;
cursor
:
pointer
;
}
.from-box
button
:hover
{
background-color
:
#a262ad
;
color
:
#f6f6f6
;
transition
:
background-color
0.5s
ease
;
}
.con-box
{
width
:
50%
;
/* 弹性布局 垂直排列 居中 */
display
:
flex
;
flex-direction
:
column
;
justify-content
:
center
;
align-items
:
center
;
/* 绝对定位 */
position
:
absolute
;
top
:
50%
;
transform
:
translateY
(
-50%
);
}
.con-box.left
{
left
:
-2%
;
}
.con-box.right
{
right
:
-2%
;
}
.con-box
h2
{
color
:
#8e9aaf
;
font-size
:
25px
;
font-weight
:
bold
;
letter-spacing
:
3px
;
text-align
:
center
;
margin-bottom
:
4px
;
}
.con-box
p
{
font-size
:
12px
;
letter-spacing
:
2px
;
color
:
#8e9aaf
;
text-align
:
center
;
}
.con-box
span
{
color
:
#d3b7d8
;
}
.con-box
img
{
width
:
150px
;
height
:
150px
;
opacity
:
0.9
;
margin
:
40px
0
;
}
.con-box
button
{
margin-top
:
3%
;
background-color
:
#fff
;
color
:
#a262ad
;
border
:
1px
solid
#d3b7d8
;
padding
:
6px
10px
;
letter-spacing
:
1px
;
outline
:
none
;
/* 鼠标放上变小手 */
cursor
:
pointer
;
}
.con-box
button
:hover
{
background-color
:
#a262ad
;
color
:
#f6f6f6
;
}
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录