From 167bf572a08f61981cb23a399e0123152b857be6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=98=93=E6=96=87=E8=90=8D?= <1721629528@qq.com> Date: Wed, 13 Apr 2022 09:20:44 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8F=90=E4=BA=A4=E4=BA=864=E6=9C=887=E5=92=8C?= =?UTF-8?q?4=E6=9C=888=E7=9A=84=E4=BD=9C=E4=B8=9A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../1.html" | 0 .../DetailRegister.html" | 63 ++++++++++++++++++ .../details.css" | 61 +++++++++++++++++ .../ColorChange.html" | 66 +++++++++++++++++++ 4 files changed, 190 insertions(+) create mode 100644 "\346\230\223\346\226\207\350\220\215\347\232\204\344\275\234\344\270\232/2022-04-07-vue\344\275\234\344\270\232/1.html" create mode 100644 "\346\230\223\346\226\207\350\220\215\347\232\204\344\275\234\344\270\232/2022-04-07-vue\344\275\234\344\270\232/DetailRegister.html" create mode 100644 "\346\230\223\346\226\207\350\220\215\347\232\204\344\275\234\344\270\232/2022-04-07-vue\344\275\234\344\270\232/details.css" create mode 100644 "\346\230\223\346\226\207\350\220\215\347\232\204\344\275\234\344\270\232/2022-04-08-vue\344\275\234\344\270\232/ColorChange.html" diff --git "a/\346\230\223\346\226\207\350\220\215\347\232\204\344\275\234\344\270\232/2022-04-07-vue\344\275\234\344\270\232/1.html" "b/\346\230\223\346\226\207\350\220\215\347\232\204\344\275\234\344\270\232/2022-04-07-vue\344\275\234\344\270\232/1.html" new file mode 100644 index 0000000..e69de29 diff --git "a/\346\230\223\346\226\207\350\220\215\347\232\204\344\275\234\344\270\232/2022-04-07-vue\344\275\234\344\270\232/DetailRegister.html" "b/\346\230\223\346\226\207\350\220\215\347\232\204\344\275\234\344\270\232/2022-04-07-vue\344\275\234\344\270\232/DetailRegister.html" new file mode 100644 index 0000000..9a96630 --- /dev/null +++ "b/\346\230\223\346\226\207\350\220\215\347\232\204\344\275\234\344\270\232/2022-04-07-vue\344\275\234\344\270\232/DetailRegister.html" @@ -0,0 +1,63 @@ + + + + + + 注册 + + + + + +
+

注册

+ + + + + + + + + + + + + + + + + + + + + + + + + +
用 户 名:
密    码:
确认密码:
性    别: +
所在省份: + +
+ +
+
+ + + \ No newline at end of file diff --git "a/\346\230\223\346\226\207\350\220\215\347\232\204\344\275\234\344\270\232/2022-04-07-vue\344\275\234\344\270\232/details.css" "b/\346\230\223\346\226\207\350\220\215\347\232\204\344\275\234\344\270\232/2022-04-07-vue\344\275\234\344\270\232/details.css" new file mode 100644 index 0000000..5837b8f --- /dev/null +++ "b/\346\230\223\346\226\207\350\220\215\347\232\204\344\275\234\344\270\232/2022-04-07-vue\344\275\234\344\270\232/details.css" @@ -0,0 +1,61 @@ +html{ + background-color: #7A9AD7; +} +#DetailRegister{ + margin: 100px auto; + width: 320px; + height: 400px; + border: 1px solid #7A9AD7; + background-color: white; +} +#biaoge{ + margin-left: 20px; + background-color: white; +} +h1{ + text-align: center; + color: #7A9AD7; + background-color:white; +} +#biaoge tr{ + background-color: white; + display: block; + margin-bottom: 20px; +} + +input{ + + vertical-align: bottom; + width: 133px; + border: none; + border-bottom: 1px solid #A5BAE5; +} +#btn{ + width: 135px; + height: 35px; + border: 1px solid #7A9AD7; + color: #F6F6F6; + background-color: #7A9AD7; + margin-top: 10px; + border-radius: 5%; +} +#first{ + color: #8EA5DD; + width: 80px; + padding-left: 20px; +} +#sex input { + width: 25px; + height: 18px; +} +#province{ + color: white; + background-color: #A5BAE5; + width: 133px; + line-height: 20px; + height: 23px; + padding-left: 50px; +} +span{ + color:#7A9AD7 ; +} \ No newline at end of file diff --git "a/\346\230\223\346\226\207\350\220\215\347\232\204\344\275\234\344\270\232/2022-04-08-vue\344\275\234\344\270\232/ColorChange.html" "b/\346\230\223\346\226\207\350\220\215\347\232\204\344\275\234\344\270\232/2022-04-08-vue\344\275\234\344\270\232/ColorChange.html" new file mode 100644 index 0000000..b136f43 --- /dev/null +++ "b/\346\230\223\346\226\207\350\220\215\347\232\204\344\275\234\344\270\232/2022-04-08-vue\344\275\234\344\270\232/ColorChange.html" @@ -0,0 +1,66 @@ + + + + + 自定义指令实现随机背景 + + + +

自定义指令

+
+

+
+ + + + + + + + + + \ No newline at end of file -- Gitee