视频首页uniapp

视频首页包含一个搜索框,一个顶部导航,下面是视频列表卡片

<template>
  <view class="home-page">
    <!-- 导航栏 -->
    <view class="navbar">
      <text class="navbar-title">视频首页</text>
    </view>

    <!-- 搜索框 -->
    <view class="search-bar">
      <input 
        type="text" 
        v-model="searchQuery" 
        placeholder="搜索视频..." 
        @confirm="handleSearch"
        confirm-type="search"
        class="search-input"
      />
      <button type="primary" size="mini" @tap="handleSearch" class="search-button">搜索</button>
    </view>

    <!-- 主要内容区域 -->
    <scroll-view scroll-y class="content">
      <!-- 热门视频 -->
      <view class="section">
        <text class="section-title"></text>
        <view class="news-grid">
          <navigator v-for="(item, index) in hotNews" :key="index" :url="'/pages/newsDetail/main?id=' + item.id" hover-class="navigator-hover" class="news-card">
            <image :src="item.thumbnail" class="news-thumbnail"></image>
            <text class="news-title">{{ item.title }}</text>
            <text class="news-summary">{{ item.summary }}</text>
          </navigator>
        </view>
      </view>

      
    </scroll-view>
  </view>
</template>

<script>
export default {
  data() {
    return {
      searchQuery: '', // 搜索查询字符串
      hotNews: [
        { id: 1, title: '视频标题1',  thumbnail: 'https://example.com/thumbnail1.jpg' },
        { id: 2, title: '视频标题2',  thumbnail: 'https://example.com/thumbnail2.jpg' },
		{ id: 1, title: '视频标题1',  thumbnail: 'https://example.com/thumbnail1.jpg' },
		  { id: 2, title: '视频标题2',  thumbnail: 'https://example.com/thumbnail2.jpg' },		  
		{ id: 1, title: '视频标题1',  thumbnail: 'https://example.com/thumbnail1.jpg' },
		{ id: 2, title: '视频标题2',  thumbnail: 'https://example.com/thumbnail2.jpg' },
		{ id: 1, title: '视频标题1',  thumbnail: 'https://example.com/thumbnail1.jpg' },
		  { id: 2, title: '视频标题2',  thumbnail: 'https://example.com/thumbnail2.jpg' },		  
		
		
      ],
      
    };
  },
  methods: {
    handleSearch() {
      console.log('正在搜索:', this.searchQuery);
      // 实现搜索逻辑...
    }
  }
};
</script>

<style>
/* 样式部分 */
.home-page {
  padding: 0 15px;
  background-color: #f9f9f9;
}

.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  background-color: #fff;
  box-shadow: 0 1px 5px rgba(0, 0, 0, .1);
  margin-bottom: 10px;
}

.navbar-title {
  font-size: 15px;
  font-weight: bold;
}

.search-bar {
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 25px;
  padding: 5px 10px;
  margin-bottom: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .1);
}

.search-input {
  flex-grow: 1;
  padding: 10px;
  border: none;
  outline: none;
  background-color: transparent;
}

.search-button {
  margin-left: 10px;
  border-radius: 20px;
}

.content {
  height: calc(100vh - 150px); /* 调整高度以适应不同屏幕尺寸 */
  background-color: #f9f9f9;
}

.section-title {
  font-size: 18px;
  font-weight: bold;
  margin: 20px 0 10px;
  color: #333;
}

.news-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.news-card {
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
  width: calc(50% - 7.5px); /* 两个项目占据一行,留出间距 */
  box-shadow: 0 2px 5px rgba(0, 0, 0, .1);
}

.item-list {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.item-card {
  background-color: #fff;
  border-radius: 50px;
  overflow: hidden;
  padding: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .1);
}

.news-thumbnail, .item-thumbnail {
  width: 100%;
  height: auto;
  border-bottom: 1px solid #ddd;
}

.news-title, .item-title {
  font-size: 16px;
  margin: 10px 0;
  color: #333;
}

.news-summary {
  font-size: 140px;
  color: #666;
  padding: 0 10px 10px;
}

.navigator-hover {
  opacity: 0.8;
}
</style>
相关推荐
喵王叭1 小时前
【测试工具】 Postman 基本使用
javascript·测试工具·postman
编程百晓君3 小时前
Harmony OS开发-ArkTS语言速成五
javascript·harmonyos·arkts
明月看潮生3 小时前
青少年编程与数学 02-005 移动Web编程基础 15课题、移动应用开发
前端·青少年编程·编程与数学·移动web
qq_424317183 小时前
html+css+js网页设计 美食 好厨艺西餐美食企业网站模板6个页面
javascript·css·html
JINGWHALE14 小时前
设计模式 结构型 外观模式(Facade Pattern)与 常见技术框架应用 解析
前端·人工智能·后端·设计模式·性能优化·系统架构·外观模式
别发呆了吧5 小时前
vue路由模式面试题
前端·javascript·vue.js·前端面试题
等一场春雨5 小时前
React 中结合 antd 的 Input 组件实现防抖输入
前端·javascript·react.js
大莲芒6 小时前
[React] 生态有哪些
前端·react.js·前端框架
代码对我眨眼睛6 小时前
vite+vue3动态引入资源文件(问题已解决但离了个大谱)
开发语言·javascript·vue.js
疯狂的沙粒6 小时前
如何在 JavaScript 中实现日期格式化?
开发语言·前端·css·node.js