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

广安网站建设推荐福建省城乡建设网站

广安网站建设推荐,福建省城乡建设网站,如何查一个网站的域名,制作手工作品效果如下图所示 首页有导航栏#xff0c;搜索框#xff0c;和视频列表#xff0c; 导航栏如下图 搜索框如下图 视频列表如下图 文件目录 视频首页页面代码如下 template view classvideo-home !-- 搜索栏 -- view class…效果如下图所示 首页有导航栏搜索框和视频列表 导航栏如下图 搜索框如下图 视频列表如下图 文件目录 视频首页页面代码如下 template   view classvideo-home     !-- 搜索栏 --     view classsearch-bar       input typetext placeholder搜索视频... v-modelsearchQuery inputhandleSearch /       button clickhandleSearch搜索/button     /view     !-- 视频分类导航 --     view classcategory-tabs       scroll-view scroll-x classtabs         view v-for(category, index) in categories :keyindex                :class[tab-item, { active: activeCategory category }]                clickchangeCategory(category)           {{ category }}         /view       /scroll-view     /view    !-- 视频列表 --    view classvideo-list      block v-for(item, index) in filteredVideos :keyindex        view classvideo-item clickgoToVideoDetail(item.id)          video refvideos :srcitem.videoUrl classvideo-thumbnail controls/video          view classvideo-content            text classvideo-title{{ item.title }}/text            text classvideo-summary{{ item.summary }}/text            text classvideo-date{{ formatDate(item.date) }}/text            text classvideo-duration{{ formatDuration(item.duration) }}/text          /view        /view      /block    /view   /view /template script export default {   data() {     return {       searchQuery: ,       activeCategory: 推荐,       categories: [推荐, 热门, 最新, 科技, 娱乐, 生活],       videoItems: [         // 示例视频条目请替换为实际数据或从后端获取的数据         { id: 1, title: 视频标题1, summary: 视频摘要..., date: new Date(), duration: 360, videoUrl: /static/videos/1.mp4, category: 推荐 },         { id: 2, title: 视频标题2, summary: 视频摘要..., date: new Date(), duration: 540, videoUrl: /static/videos/2.mp4, category: 热门 },        { id: 3, title: 视频标题3, summary: 视频摘要..., date: new Date(), duration: 360, videoUrl: /static/videos/3.mp4, category: 推荐 },        { id:4, title: 视频标题4, summary: 视频摘要..., date: new Date(), duration: 540, videoUrl: /static/videos/4.mp4, category: 热门 },        { id: 5, title: 视频标题5, summary: 视频摘要..., date: new Date(), duration: 360, videoUrl: /static/videos/5.mp4, category: 推荐 },        { id: 6, title: 视频标题6, summary: 视频摘要..., date: new Date(), duration: 540, videoUrl: /static/videos/6.mp4, category: 热门 },        { id:7, title: 视频标题7, summary: 视频摘要..., date: new Date(), duration: 360, videoUrl: /static/videos/7.mp4, category: 推荐 },        { id:8, title: 视频标题8, summary: 视频摘要..., date: new Date(), duration: 540, videoUrl: /static/videos/8.mp4, category: 热门 },        { id:9, title: 视频标题9, summary: 视频摘要..., date: new Date(), duration: 360, videoUrl: /static/videos/live1.mp4, category: 推荐 },        { id: 10, title: 视频标题10, summary: 视频摘要..., date: new Date(), duration: 540, videoUrl: /static/videos/live2.mp4, category: 热门 },        { id: 1, title: 视频标题1, summary: 视频摘要..., date: new Date(), duration: 360, videoUrl: /static/videos/1.mp4, category: 推荐 },         { id: 2, title: 视频标题2, summary: 视频摘要..., date: new Date(), duration: 540, videoUrl: /static/videos/2.mp4, category: 热门 },        { id: 3, title: 视频标题3, summary: 视频摘要..., date: new Date(), duration: 360, videoUrl: /static/videos/3.mp4, category: 推荐 },        { id:4, title: 视频标题4, summary: 视频摘要..., date: new Date(), duration: 540, videoUrl: /static/videos/4.mp4, category: 热门 },        { id: 5, title: 视频标题5, summary: 视频摘要..., date: new Date(), duration: 360, videoUrl: /static/videos/5.mp4, category: 推荐 },        { id: 6, title: 视频标题6, summary: 视频摘要..., date: new Date(), duration: 540, videoUrl: /static/videos/6.mp4, category: 娱乐 },        { id:7, title: 视频标题7, summary: 视频摘要..., date: new Date(), duration: 360, videoUrl: /static/videos/7.mp4, category: 科技 },        { id:8, title: 视频标题8, summary: 视频摘要..., date: new Date(), duration: 540, videoUrl: /static/videos/8.mp4, category: 最新 },        { id:9, title: 视频标题9, summary: 视频摘要..., date: new Date(), duration: 360, videoUrl: /static/videos/live1.mp4, category: 推荐 },        { id: 10, title: 视频标题10, summary: 视频摘要..., date: new Date(), duration: 540, videoUrl: /static/videos/live2.mp4, category: 热门 },               ],       currentPlaying: null // 用来追踪当前正在播放的视频元素     };   },   computed: {     filteredVideos() {       return this.videoItems.filter(item           (this.searchQuery ? item.title.includes(this.searchQuery) : true)         (this.activeCategory 推荐 || item.category this.activeCategory)       );     }   },   methods: {       goToVideoDetail(id) {             uni.navigateTo({               url: /pages/VideoDetail/VideoDetail?id${id}             });           },     handleSearch(event) {       // 如果需要对输入进行实时响应可以在这里实现       this.searchQuery event.target.value;     },     changeCategory(category) {       this.activeCategory category;     },     playVideo(videoUrl) {       const videos this.$refs.videos || [];       videos.forEach(video {         if (video.src videoUrl this.currentPlaying ! video) {           this.pauseCurrent();           video.play();           this.currentPlaying video;         } else if (this.currentPlaying video) {           video.pause();           this.currentPlaying null;         }       });     },     pauseCurrent() {       if (this.currentPlaying) {         this.currentPlaying.pause();       }     },     formatDate(date) {       const options { year: numeric, month: long, day: numeric };       return new Intl.DateTimeFormat(zh-CN, options).format(date);     },     formatDuration(seconds) {       const minutes Math.floor(seconds / 60);       const remainingSeconds seconds % 60;       return ${minutes}:${remainingSeconds.toString().padStart(2, 0)};     }   } }; /script style scoped /* 样式 */ .video-home {   padding: 100px; } .search-bar {   display: flex;   align-items: center;   margin-bottom: 10px; } .search-bar input {   flex: 1;   padding: 8px;   border: 1px solid #ccc;   border-radius: 4px; } .search-bar button {   margin-left: 5px;   padding: 8px 16px; } .category-tabs {   margin-bottom: 10px; } .tabs {   white-space: nowrap; } .tab-item {   display: inline-block;   padding: 8px 16px;   cursor: pointer; } .tab-item.active {   color: #3cc51f;   font-weight: bold; } .video-list .video-item {   display: flex;   margin-bottom: 10px;   padding: 10px;   background-color: #fff;   border-radius: 4px; } .video-thumbnail {   width: 400px;   height: 400px;   margin-right: 10px;   border-radius: 4px; } /* 调整视频缩略图大小 */ .video-thumbnail {   width: 100%; /* 让缩略图占满整个视频容器 */   height: auto; /* 维持视频的原始比例 */   border-radius: 8px; /* 匹配视频项的圆角 */   margin-right: 20px; /* 增大右侧外边距给文字内容留出更多空间 */ } .video-content {   flex: 2; } .video-title {   font-size: 16px;   font-weight: bold;   margin-bottom: 5px; } .video-summary {   font-size: 14px;   color: #666; } .video-date, .video-duration {   font-size: 12px;   color: #999; } .video-duration {   margin-top: 5px; } /* 视频列表样式 */ .video-list {   display: flex;   flex-wrap: wrap; /* 允许换行 */   gap: 20px; /* 设置项目之间的间距 */   margin: -10px; /* 调整外边距以对齐内部间距 */ } /style
http://www.w-s-a.com/news/583045/

相关文章:

  • 上海金山网站建设公司手机淘宝客网站怎么做的
  • 网站开发需要公司做网站费用计入什么科目
  • 网站优化有哪些类型免费制作app的傻瓜软件
  • 如何做网站咨询wordpress get
  • 企业网站建设网站做网站用别人的图片
  • 站长统计代码个人网站源代码
  • 求推荐专门做借条的网站公众号排版编辑器
  • 动态做网站网站开发语言查询 蔡学镛
  • 莆田网站建设创意自助建站英文
  • cms系统创建静态网站龙岗网站建设哪家好
  • 自己做的网站被封了邢台规划局网站建设
  • 网站建设项目合同wordpress主题没法用
  • 个旧市哪里有做网站wordpress内页php页面
  • 程序员接活的平台网站互联网平台建设方案
  • 网站安全建设模板深圳企业管理咨询公司
  • 做网站 还是淘宝店wordpress分类链接后加
  • wordpress腾讯云 COSseo内容优化心得
  • 特价旅游机票网站建设i营销
  • 如何成立网站深圳创业项目
  • 建设商业网站惠州网站建设推荐乐云seo
  • 如何申请免费域名做网站免费推广神器
  • 自媒体人专用网站安岳网站建设
  • 特乐网站建设做网站推广要多少钱
  • 山东省建设安全生产协会网站义乌跨境电商公司前十名
  • 做网站优化就是发文章吗起飞页自助建站平台的特点
  • 做网站还是做app好慈溪机械加工网
  • 上传下载文件网站开发的php源码腾讯企点
  • 给分管领导网站建设情况汇报怎么写网络运营的岗位职责及任职要求
  • 电线电缆技术支持中山网站建设广告设计培训学校有哪些
  • 如何禁止通过ip访问网站wordpress无法调用主题布局和图片