台风提示面板

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
body{
background-color: #000;
}
.prompt {
width: 250px;
min-height: 280px;
background-color: white;
display: block;
position: relative;
}

.prompt_top {
width: 100%;
height: 35px;
background-color: #161E5E;
text-align: center;
color: white;
line-height: 35px;
}

.prompt_item {
width: 100%;
display: flex;
justify-content: center;

}

.prompt_item_content {
width: 95%;
height: 35px;
background-color: white;
display: flex;
align-items: center;
border-bottom: 1px solid #e0e0e0;
font-size: 13px;
}

.prompt_item_tit {
padding-right: 0px;
min-width: 90px;
color: #999;
padding-left: 10px;
display: block;
}

.prompt_item_data {
color: #666;
}

.prompt_sj {
position: absolute;
bottom: -12px;
left: 115px;
width: 0;
height: 0;
border-style: solid;
border-width: 15px 10px 0 10px;
border-color: #ffffff transparent transparent transparent;
}
</style>
</head>
<body>
<div class="prompt">
<div class="prompt_top">202202鲇鱼(Megi)</div>

<div class="prompt_item">
<div class="prompt_item_content">
<span class="prompt_item_tit">时间</span>
<span class="prompt_item_data">98.5°E,8.7°N</span>
</div>
</div>
<div class="prompt_item">
<div class="prompt_item_content">
<span class="prompt_item_tit">中心位置</span>
<span class="prompt_item_data">98.5°E,8.7°N</span>
</div>
</div>
<div class="prompt_item">
<div class="prompt_item_content">
<span class="prompt_item_tit">最大风力</span>
<span class="prompt_item_data">8级</span>
</div>
</div>
<div class="prompt_item">
<div class="prompt_item_content">
<span class="prompt_item_tit">最大风速</span>
<span class="prompt_item_data">18米/秒</span>
</div>
</div>
<div class="prompt_item">
<div class="prompt_item_content">
<span class="prompt_item_tit">中心气压</span>
<span class="prompt_item_data">998百帕</span>
</div>
</div>
<div class="prompt_item">
<div class="prompt_item_content">
<span class="prompt_item_tit">移动速度</span>
<span class="prompt_item_data">8公里/小时</span>
</div>
</div>
<div class="prompt_item">
<div class="prompt_item_content">
<span class="prompt_item_tit">移动移向</span>
<span class="prompt_item_data">东南</span>
</div>
</div>
<span class="prompt_sj"></span>

</div>
</body>
</html>
posted @ 2022-05-31 10:52  小林222  阅读(21)  评论(0)    收藏  举报