当前位置: 首页 > article >正文

uniapp视频首页页面

<style scoped>
/* 全局样式 */
.container {
  display: flex;
  flex-direction: column;
  height: 100vh;
}

/* 搜索栏样式 */
.search-bar {
  display: flex;
  align-items: center;
  padding: 10px;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.search-input {
  flex: 1;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.search-button {
  padding: 10px 20px;
  margin-left: 10px;
  background-color: #ff4081;
  color: #fff;
  border: none;
  border-radius: 5px;
}

/* 导航栏样式 */
.nav-bar {
  display: flex;
  justify-content: space-around;
  padding: 10px 0;
  background-color: #fff;
  border-bottom: 1px solid #ddd;
}

.nav-item {
  flex: 1;
  text-align: center;
  font-size: 16px;
  color: #333;
  padding: 10px;
}

.nav-item.active {
  color: #ff4081;
  border-bottom: 2px solid #ff4081;
}

/* 内容区域样式 */
.content-area {
  flex: 1;
  background-color: #f5f5f5;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
}

.content-item {
  width: 48%;
  margin: 1%;
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.content-item-image {
  width: 100%;
  height: 150px; /* 固定高度,确保方形显示 */
}

.content-item-title {
  padding: 10px;
  font-size: 14px;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
</style>
<template>
  <view class="container">
    <!-- 搜索栏 -->
    <view class="search-bar">
      <image class="logo" src="/static/images/logo.png" mode="widthFix"></image>
      <input class="search-input" placeholder="搜索视频"/>
      <button class="search-button">搜索</button>
    </view>

    <!-- 导航栏 -->
    <view class="nav-bar">
      <view :class="['nav-item', {'active': activeTab === 'recommend'}]" @click="changeTab('recommend')">推荐</view>
      <view :class="['nav-item', {'active': activeTab === 'hot'}]" @click="changeTab('hot')">热门</view>
      <view :class="['nav-item', {'active': activeTab === 'article'}]" @click="changeTab('article')">图文</view>
      <view :class="['nav-item', {'active': activeTab === 'short'}]" @click="changeTab('short')">短视频</view>
    </view>

    <!-- 内容区域 -->
    <scroll-view class="content-area" :style="{height: contentHeight + 'px'}" scroll-y>
      <view class="content-grid">
        <navigator v-for="(item, index) in items" :key="index" :url="'/pages/videoDetail/main?id=' + item.id" hover-class="navigator-hover" class="content-item">
          <image :src="item.image" mode="aspectFill" class="content-item-image"></image>
          <text class="content-item-title">{{ item.title }}</text>
        </navigator>
      </view>
    </scroll-view>

    <!-- 底部导航栏(uniapp自带) -->
    <uni-tabbar></uni-tabbar>
  </view>
</template>
<script>
export default {
  data() {
    return {
      activeTab: 'recommend',
      items: [
        { id: 1, image: '/static/images/video1.jpg', title: '视频标题1' },
        { id: 2, image: '/static/images/video2.jpg', title: '视频标题2' },
        { id: 3, image: '/static/images/video3.jpg', title: '视频标题3' },
        // 添加更多内容项
      ],
      screenHeight: 0,
      searchBarHeight: 60, // 搜索栏高度(可根据实际情况调整)
      navBarHeight: 40,   // 导航栏高度(可根据实际情况调整)
      tabBarHeight: 50,   // 底部导航栏高度(可根据实际情况调整)
    };
  },
  computed: {
    contentHeight() {
      return this.screenHeight - this.searchBarHeight - this.navBarHeight - this.tabBarHeight;
    }
  },
  onReady() {
    // 获取屏幕高度
    const systemInfo = uni.getSystemInfoSync();
    this.screenHeight = systemInfo.windowHeight;
  },
  methods: {
    changeTab(tab) {
      this.activeTab = tab;
      // 根据选中的标签加载相应的内容
      // 这里可以调用API获取数据
    }
  }
};
</script>


http://www.kler.cn/a/467902.html

相关文章:

  • 2025第1周 | JavaScript中的正则表达式
  • 将本地的 Git 仓库上传到 GitHub 上(github没有该仓库)
  • 【开源工业视觉库】启航规划
  • C++11——2:可变模板参数
  • nodejs实现https://localhost在window系统自签名99年+授信
  • 深入理解 JavaScript 立即执行函数表达式(IIFE)
  • ts是什么、tsc是什么、tsx是什么、jsx是什么、scss是什么
  • WordPress新安装只安装主题后发现只有首页能打开,其他路由页面都是404,并且Elementor都打不开
  • 腾讯云智能结构化 OCR:驱动多行业数字化转型的核心引擎
  • 全方位沉浸式音响体验——利用汽车结构件作为发声体提升车内音质引言
  • NLP 技术的突破与未来:从词嵌入到 Transformer
  • Android XR:Google在扩展现实领域的第二次起航
  • 五类推理(逻辑推理、概率推理、图推理、基于深度学习的推理)的开源库 (一)
  • 力扣--343.整数拆分
  • RAG(Retrieval-Augmented Generation,检索增强生成)流程
  • 【leetcode100】二叉树的直径
  • 正则表达式在JSON里报错
  • .NET框架用C#实现PDF转HTML
  • 下载linux aarch64版本的htop
  • 对一段已知行情用python中画出K线图~
  • 利用LlamaIndex实现超参数调优自动化
  • 【数据结构】链表链表
  • 若依修改超级管理员admin的密码
  • 【Leetcode 每日一题】732. 我的日程安排表 III
  • 【阅读笔记】基于FPGA的红外图像二阶牛顿插值算法的实现
  • CSS——1.优缺点