From f8d987db1330d9189182d75d2e6d252c2c8fbe09 Mon Sep 17 00:00:00 2001
From: JasonYANG17 <39414350+JasonYANG170@users.noreply.github.com>
Date: Wed, 29 Mar 2023 22:21:04 +0800
Subject: [PATCH] Add files via upload
---
index.html | 115 ++++++++++++++++++++++++++++++++++++++++++++++++++
style.css | 121 +++++++++++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 236 insertions(+)
create mode 100644 index.html
create mode 100644 style.css
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..3eff864
--- /dev/null
+++ b/index.html
@@ -0,0 +1,115 @@
+
+
+
+
+ 商品介绍
+
+
+
+
+
+
+
+
+
+
+ 参赛项目
+ 智能节水净水花盆
+
+
+
+ 支持功能
+
+
+ - 土壤缺水时自动浇水。
+ - 天黑时自动开启红蓝光为植物提供光合作用。
+ - 实时获取环境温度,湿度与土壤湿度并显示。
+ - 连接WIFI实时上传获取的数据到云端。
+ - 用户可以通过网页获取植物生长数据。
+ - 用户可以通过小程序获取实时数据。
+ - 将植物生长数据转换成表情显示。
+ - 支持太阳能充电减少电能消耗。
+ - 支持锂电池供电。
+ - 通过活性炭,沸石的物理性对水进行过滤。
+ - 回收土壤过饱和水资源,循环利用。
+
+
+
+
+
+
+ 使用说明
+ 离线模式
+ 1.接入电源或开启电池供电开关。
+ 在线模式
+
+ - 接入电源或开启电池供电开关。
+
+ - 点击按钮进入配网界面。
+ - 使用手机连接Flowerpot网络,输入密码12345678
+ - 手机自动进入配网界面,点击配网,
输入连接的WIFI名称和密码,自动重启程序。
+ - 进入智能节水净水花盆APP或网站即可看到实时信息。
+
+
+
+
+
+ 产品前景
+ 1.国家层面:
+ 政策支持,党中央强调绿水青山就是金山银山,
+ 全面推动生态文明建设,把生态文明建设摆在突出位置,弘扬生态文明思想。
+ 2.社会层面:
+ 生态链根基,植物是生态链不可缺少的部分,
也是最底层最重要的部分,培育植物即是培养环境,也是保护中上层生态链的全体动物。
+ 3.个人层面:
+ 时代潮流,当代人们生活忙碌,工作时间长,
休息时间短,而本项目的出现可有效帮助人们解决工作时间无法养护植物的问题。
全方位,多层次,宽领域,全面优势
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/style.css b/style.css
new file mode 100644
index 0000000..f6c3a2c
--- /dev/null
+++ b/style.css
@@ -0,0 +1,121 @@
+body {
+ font-family: Arial, sans-serif;
+ margin: 0;
+ padding: 0;
+}
+
+header {
+ background-color: aqua;
+ border: 1px solid black;
+ padding: 10px;
+}
+
+headerm {
+ background-color: pink;
+ color: #fff;
+ padding: 10px;
+}
+h1 {
+ margin: 0;
+}
+
+nav ul {
+ list-style-type: none;
+ margin: 5px;
+ padding: 5px;
+ width: 100%;
+ justify-content:center;
+ display: inline-flex;
+}
+
+
+nav li {
+ margin-right: auto;
+margin-left: auto;
+ color: black;
+}
+nav asd{
+ text-align:left;
+ color: black;
+ float: left;
+
+}
+nav a {
+ color: #fff;
+ text-decoration: none;
+}
+
+nav form {
+ display: flex;
+
+float: right;
+ margin-left: 30px;
+ width: 200px;
+ height: 30px;
+}
+
+nav input[type="text"] {
+ padding: 5px;
+ border-radius: 5px;
+ border: none;
+ margin-right: 10px;
+}
+
+nav button[type="submit"] {
+ background-color: #fff;
+ color: #333;
+ border: none;
+ padding: 5px 10px;
+ border-radius: 5px;
+ cursor: pointer;
+}
+
+main {
+ padding: 20px;
+}
+
+section {
+ margin-bottom: 40px;
+}
+
+h2 {
+ margin-top: 0;
+}
+
+ul {
+ list-style-type: none;
+ margin: 0;
+ padding: 0;
+}
+
+footer {
+ height: auto;
+ width: auto;
+ background-color: aqua;
+ color:black;
+ padding: 10px;
+ text-align: center;
+
+}
+
+box{
+float: left;
+ display: inline-block;
+ padding: 2px;
+ border: 1px solid blue;
+ width: auto;
+ height: 450px;
+ margin-right: 5px;
+ margin-left: 5px;
+ margin-bottom: 20px;
+
+}
+box2{
+ width: 100px;
+ border-bottom: 1px solid blue;
+
+}
+clear{
+ clear: both;
+ display: block;
+}
\ No newline at end of file