zoukankan      html  css  js  c++  java
  • wx-一个简单页面

    一个具有顶部,底部和中间的html页面,但没有js

    <view class="root">
      <!-- 标签栏的页签 固定高度 -->
      <view class="tabs">
        <view class="item active">
          <text>个性推荐</text>
        </view>
        <view class="item">
          <text>歌单</text>
        </view>
        <view class="item">
          <text>主播电台</text>
        </view>
        <view class="item">
          <text>排行榜</text>
        </view>
      </view>
      <!-- 内容区域 自适应高度 -->
      <scroll-view class="content" scroll-y>
        <swiper class="slide" autoplay indicator-dots>
          <swiper-item>
            <image src="../../images/slide.png"></image>
          </swiper-item>
          <swiper-item>
            <image src="../../images/slide.png"></image>
          </swiper-item>
          <swiper-item>
            <image src="../../images/slide.png"></image>
          </swiper-item>
        </swiper>
        <view class="portals">
          <view class="item">
            <image src="../../images/04.png"></image>
            <text>私人FM</text>
          </view>
          <view class="item">
            <image src="../../images/05.png"></image>
            <text>每日歌曲推荐</text>
          </view>
          <view class="item">
            <image src="../../images/06.png"></image>
            <text>云音乐新歌榜</text>
          </view>
        </view>
        <view class="list">
          <view class="title">
            <text>推荐歌单</text>
          </view>
          <view class="inner">
            <view class="item">
              <image src="../../images/poster.jpg"></image>
              <text>一生中最爱的是谁谁?</text>
            </view>
            <view class="item">
              <image src="../../images/poster.jpg"></image>
              <text>一生中最爱的是谁谁?</text>
            </view>
            <view class="item">
              <image src="../../images/poster.jpg"></image>
              <text>一生中最爱的是谁谁?</text>
            </view>
            <view class="item">
              <image src="../../images/poster.jpg"></image>
              <text>一生中最爱的是谁谁?</text>
            </view>
            <view class="item">
              <image src="../../images/poster.jpg"></image>
              <text>一生中最爱的是谁谁?</text>
            </view>
            <view class="item">
              <image src="../../images/poster.jpg"></image>
              <text>一生中最爱的是谁谁?</text>
            </view>
          </view>
        </view>
      </scroll-view>
      <!-- 播放控制条条 固定高度 -->
      <view class="player">
        <view class="poster">
          <image src="../../images/poster.jpg"></image>
        </view>
        <view class="info">
          <text class="title">一生中最爱</text>
          <text class="artist">谭咏麟</text>
        </view>
        <view class="controls">
          <image src="../../images/01.png"></image>
          <image src="../../images/02.png"></image>
          <image src="../../images/03.png"></image>
        </view>
      </view>
    </view>
    
    page {
      height: 100%;
    }
    
    .root {
      display: flex;
      flex-direction: column;
      height: 100%;
      background-color: #f0f0f0;
    }
    
    .tabs {
      display: flex;
      background-color: pink;
    }
    
    .tabs .item {
      flex: 1;
      text-align: center;
      font-size: 12px;
      background-color: #222;
      color: #ccc;
      padding: 8px 0;
    }
    
    .tabs .item.active {
      color: #fff;
      border-bottom: 2px solid #e9232c;
    }
    
    .content {
      flex: 1;
      background-color: #111214;
      color: #ccc;
      overflow: hidden;
    }
    
    .slide image {
       100%;
      height: 130px;
    }
    
    .portals {
      display: flex;
      margin-bottom: 15px;
    }
    
    .portals .item {
      flex: 1;
    }
    
    .portals .item image {
       60px;
      height: 60px;
      display: block;
      margin: 10px auto;
    }
    
    .portals .item text {
      display: block;
      font-size: 12px;
      text-align: center;
    }
    
    .list .title {
      margin: 5px 10px;
      font-size: 14px;
    }
    
    .list .inner {
      display: flex;
      flex-wrap: wrap;
    }
    
    
    .list .inner .item {
       33.33333333%;
    }
    
    .list .inner .item image {
      display: block;
       120px;
      height: 120px;
      margin: 0 auto;
    }
    
    .list .inner .item text {
      font-size: 14px;
    }
    
    .player {
      display: flex;
      height: 50px;
      background-color: #17181A;
    }
    
    .poster image {
       40px;
      height: 40px;
      margin: 5px;
    }
    
    .info {
      flex: 1;
      color: #888;
      font-size: 14px;
      margin: 5px;
    }
    
    .info .title{
      display: block;
      font-size: 16px;
      color: #ccc;
    }
    
    .controls image {
       40px;
      height: 40px;
      margin: 5px 2px;
    }
    

    可以改一下页面的固定样式部分

    {
        "navigationBarTitleText": "Music Player",
        "navigationBarBackgroundColor": "#333",
        "navigationBarTextStyle": "white"
    }
    
  • 相关阅读:
    Linux基础-shell脚本知识整理和脚本编写----------变量、运算符、流程控制、函数、计划任务(发送邮件)
    Linux基础-正则表达式整理---------------grep、sed、awk
    Linux基础-配置网络、集群内主机名设定、ssh登入、bash命令、通配符(元字符)
    Linux基础-----------nginx安装和nginx web、nginx反向代理、nfs 服务
    Linux基础--------监控系统、进程管理、软件包管理-------free、dd、kill、 rpm、yum、源码安装python
    Linux基础------文件打包解包---tar命令,文件压缩解压---命令gzip,vim编辑器创建和编辑正文件,磁盘分区/格式化,软/硬链接
    Linux用户创建及权限管理
    django博客项目6:Django Admin 后台发布文章
    django博客项目5:博客首页视图(2)
    django博客项目4:博客首页视图(1)
  • 原文地址:https://www.cnblogs.com/ygjzs/p/12045391.html
Copyright © 2011-2022 走看看