码迷,mamicode.com
首页 > 微信 > 详细

微信小程序_(案例)简单中国天气网首页

时间:2019-03-18 01:12:48      阅读:405      评论:0      收藏:0      [点我收藏+]

标签:alt   2.0   height   logs   ndt   img   hid   idt   .com   

 

 

Demo:简单中国天气网首页

技术图片

 

技术图片
Page({
  data:{
    name:"CynicalGary",
    temp:"4",
    low:"-1°C",
    high:"10°C",
    type:"晴",
    city:"泉州",
    week:"星期五",
    weather:"无持续风行 微风级"
  }
})
index.js

 

技术图片
<view class=‘content‘>
  <view class=‘today‘>
    <view class=‘info‘>
      <view class=‘name‘>{{name}}</view>
      <view class=‘temp‘>{{temp}}°C</view>
      <view class=‘lowhigh‘>{{low}}/{{height}}</view>
      <view class=‘type‘>{{type}}</view>
      <view class=‘city‘>{{city}}</view>
      <view class=‘week‘>{{week}}</view>
      <view class=‘weather‘>{{weather}}</view> 
    </view>
  </view>
</view>
index.wxml

 

技术图片
.content{
  font-family: 微软雅黑,宋体;
  font-size: 14px;
  background-size: cover;
  height: 100%;
  width: 100%;
  color:#333;
}

.today{
  padding: 70rpx;
  height: 50%;
}

.name{
  font-size: 20px;
  text-align: center;
  color: grey;
}

.temp{
  font-size: 80px;
  text-align: center;
}

.lowhigh{
  font-size: 12px;
  text-align: center;
  margin-top: 30rpx;
}

.type{
  font-size: 16px;
  text-align: center;
  margin-top: 30rpx;
}

.city{
  font-size: 20px;
  text-align: center;
  margin-top: 20rpx;
  margin-right: 10rpx;
}

.week{
  font-size: 12px;
  text-align: center;
  margin-top: 30rpx;
}

.weather{
  font-size: 12px;
  text-align: center;
  margin-top: 20rpx;
}
index.wxss

 

技术图片
{
  "pages":[
    "pages/index/index",
    "pages/logs/logs"
  ],
  "window":{
    "backgroundTextStyle":"light",
    "navigationBarBackgroundColor": "#fff",
    "navigationBarTitleText": "中国天气网",
    "navigationBarTextStyle":"black"
  }
}
app.json

 

 

微信小程序_(案例)简单中国天气网首页

标签:alt   2.0   height   logs   ndt   img   hid   idt   .com   

原文地址:https://www.cnblogs.com/1138720556Gary/p/10549908.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!