8 Star 40 Fork 4

请问/基于python的天气预测(小程序)

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
result.txt 1.50 KB
一键复制 编辑 原始数据 按行查看 历史
陆杰 提交于 2023-12-21 14:55 +08:00 . 网页版
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>天气预测结果</title>
<!-- 引入 Plotly.js 库 -->
<script src="https://cdn.plot.ly/plotly-latest.min.js"></script>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
background-color: white;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
padding: 20px;
}
h1 {
color: #333;
font-size: 28px;
margin-bottom: 30px;
}
#plot {
width: 100%;
height: 400px;
box-sizing: border-box;
}
@media (max-width: 767px) {
h1 {
font-size: 24px;
}
#plot {
height: 300px;
}
}
</style>
</head>
<body>
<div class="container">
<h1>{{ title }}</h1>
<div id="plot"></div>
</div>
<script>
// 解析 JSON 格式的图表数据
var fig = JSON.parse('{{ fig_json | safe }}');
// 更新图表布局以适应屏幕宽度
fig.layout.xaxis.autorange = true;
fig.layout.yaxis.autorange = true;
// 渲染图表
Plotly.newPlot('plot', fig.data, fig.layout);
</script>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/and-course-selection_0/tianqikeyubao.git
[email protected]:and-course-selection_0/tianqikeyubao.git
and-course-selection_0
tianqikeyubao
基于python的天气预测(小程序)
master

搜索帮助