wx-一個簡單頁面

来源:https://www.cnblogs.com/ygjzs/archive/2019/12/15/12045391.html
-Advertisement-
Play Games

一個具有頂部,底部和中間的html頁面,但沒有js 可以改一下頁面的固定樣式部分 ``` ...


一個具有頂部,底部和中間的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 {
  width: 100%;
  height: 130px;
}

.portals {
  display: flex;
  margin-bottom: 15px;
}

.portals .item {
  flex: 1;
}

.portals .item image {
  width: 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 {
  width: 33.33333333%;
}

.list .inner .item image {
  display: block;
  width: 120px;
  height: 120px;
  margin: 0 auto;
}

.list .inner .item text {
  font-size: 14px;
}

.player {
  display: flex;
  height: 50px;
  background-color: #17181A;
}

.poster image {
  width: 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 {
  width: 40px;
  height: 40px;
  margin: 5px 2px;
}

可以改一下頁面的固定樣式部分

{
    "navigationBarTitleText": "Music Player",
    "navigationBarBackgroundColor": "#333",
    "navigationBarTextStyle": "white"
}

```


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 本文為筆者在InfoQ首發的原創文章,主要介紹了SQL Server 2019的新特性和產品演進思路。現轉載回自己的博客,請大家多多指教。 ...
  • LIMIT兩種方法: 1 兩種方法: 2 (1)LIMIT A; 3 #表示從第一條記錄開始取A條記錄; 4 5 (2)LIMIT A,B; 6 #參數A為可選參數,表示跳過A條數據(預設為0) 7 #參數B為必選參數,表示取B行數據; 8 9 eg1: 10 SELECT * FROM table ...
  • 語法:ROW_NUMBER() OVER(); row_number的用途非常廣泛,排序最好用它,它會為查詢出來的每一行記錄生成一個序號,依次排序且不會重覆,註意使用row_number函數時必須要用over子句選擇對某一列進行排序才能生成序號。 rank函數用於返回結果集的分區內每行的排名,行的排 ...
  • 新手剛開始用MySQL的時候可能會很容易忘記登錄密碼,下麵說一下如何重置和修改密碼 第一種方法:直接在命令行視窗操作停止伺服器mysql(這是重點:直接停止)打開CMD 在命令行視窗輸入MySQL安裝的磁碟接著輸入mysql安裝目錄下的bin路徑,比如E>cd amp\mysql5.5\bin,回車 ...
  • 一、準備工作: 1、MySql; 下載地址:https://pan.baidu.com/s/1_jGonvoX8E7JMw1fgA9nZg 提取碼:rx9a 二、安裝MySql: 1、點擊程式運行,選擇“自定義”,點擊“下一步” 2、選擇對應MySql版本,點擊“下一步” 3、點擊“Execute” ...
  • react-native run-ios “Could not find iPhone X simulator” ...
  • JS輪播圖 ...
  • 學習這部分時也學了不少代碼,一段一段往這上面寫實在有點~~~ 直接把代碼部署到代碼該在的地方吧,哈哈哈 "這是網址" 把代碼放這上面就好多了,不怕代碼丟,還可保證代碼完整,嘻嘻嘻~~~~~~ ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...