二、uniapp项目(分段器的使用、scroll-view、视频下载、转发)

一、分段器组件的使用

uniapp官方文档
在这里插入图片描述
在这里插入图片描述

在这里插入图片描述
在这里插入图片描述

<template><view class="category"><view class="category_tab"> <view class="category_tab_title"><view class="title_inner"><uni-segmented-control :current="current":values="items.map((item) => { return item.title})" @clickItem="onClickItem"styleType="text"activeColor="#d4237a"></uni-segmented-control></view><view class="search_img"><image src="../../static/icon/_search.png"></image></view></view><view class="category_tab_content">123</view></view></view>
</template><script>import {uniSegmentedControl} from '@dcloudio/uni-ui'export default {data() {return {items: [{title: '最新'},{title: '热门'}],current: 1}},components: {uniSegmentedControl},methods: {onClickItem(e) {if (this.current !== e.currentIndex) {this.current = e.currentIndex}}}}
</script><style lang="scss" scoped>.category_tab {.category_tab_title {display: flex;justify-content: center;align-items: center;.title_inner {width: 70%;}.search_img {width: 17px;height: 20px;padding-bottom: 1%;margin-left: 10rpx;image {width: 100%;height: 100%;}}}.category_tab_content {}}
</style>

二、scroll-view的使用

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

三、结合触底函数scrolltolower实现分页效果

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

在这里插入图片描述
在这里插入图片描述

<template><view class="category"><view class="category_tab"> <view class="category_tab_title"><view class="title_inner"><uni-segmented-control :current="current":values="items.map((item) => { return item.title})" @clickItem="onClickItem"styleType="text"activeColor="#d4237a"></uni-segmented-control></view><view class="search_img"><image src="../../static/icon/_search.png"></image></view></view><scroll-view @scrolltolower="handleScrolltolower" scroll-y enable-flex class="category_tab_content"><view class="cate_item"v-for="item in vertical":key="item.id"><image :src="item.img" mode="aspectFill"></image></view></scroll-view></view></view>
</template><script>import {uniSegmentedControl} from '@dcloudio/uni-ui'export default {data() {return {items: [{title: '最新',order: 'new'},{title: '热门',order: 'hot'}],current: 0, // 当前激活的标签页索引// 请求参数params: {limit: 30,skip: 0,order: "new"},id: 0,vertical: [], // 页面显示数据// 模拟的图片数组myImg: ["https://img0.baidu.com/it/u=1000551505,2077899926&fm=26&fmt=auto&gp=0.jpg","https://img0.baidu.com/it/u=1532752388,171944695&fm=26&fmt=auto&gp=0.jpg","https://img2.baidu.com/it/u=2026215452,3463309435&fm=26&fmt=auto&gp=0.jpg","https://img0.baidu.com/it/u=4255272445,3536412390&fm=26&fmt=auto&gp=0.jpg","https://img2.baidu.com/it/u=3589748713,2051752919&fm=26&fmt=auto&gp=0.jpg","https://img0.baidu.com/it/u=1156363733,1145018515&fm=26&fmt=auto&gp=0.jpg","https://img1.baidu.com/it/u=1572607292,2004901445&fm=26&fmt=auto&gp=0.jpg","https://img1.baidu.com/it/u=2629213230,2545258637&fm=26&fmt=auto&gp=0.jpg","https://img0.baidu.com/it/u=1817143901,1168063195&fm=26&fmt=auto&gp=0.jpg","https://img2.baidu.com/it/u=1814565549,2954866278&fm=26&fmt=auto&gp=0.jpg","https://img0.baidu.com/it/u=103721101,4076571305&fm=26&fmt=auto&gp=0.jpg","https://img1.baidu.com/it/u=3771357394,1518226081&fm=26&fmt=auto&gp=0.jpg","https://img1.baidu.com/it/u=525722049,125546548&fm=26&fmt=auto&gp=0.jpg","https://img2.baidu.com/it/u=3566088443,3713209594&fm=26&fmt=auto&gp=0.jpg","https://img1.baidu.com/it/u=3886212450,854269223&fm=26&fmt=auto&gp=0.jpg"],hasMore: true // 是否还有下一页数据}},components: {uniSegmentedControl},onLoad(options) {this.id = options.idthis.getList()},methods: {onClickItem(e) {/* 1. 根据被点击的标题,切换标题2. 其替换order3. 重新发送请求*/if (this.current !== e.currentIndex) {this.current = e.currentIndex} else {// 当点击的是相同的标签时return}// 重置数据this.params.skip = 0this.vertical = []this.params.order = this.items[e.currentIndex].orderthis.getList()},getList () {this.request({url: `http://157.122.54.189:9088/image/v1/vertical/category/${this.id}/vertical`,data: this.params}).then((res) => {if (res.data.res.vertical.length ===0) {this.hasMore = falseuni.showToast({title: "没有更多数据啦",icon: "none"})return}this.vertical = [...this.vertical, ...res.data.res.vertical]// console.log(res)this.changeImg(this.vertical)})},// 改变接口的imgurlchangeImg (iarray) {for(var i=0; i<iarray.length; i++) {var index = Math.floor(Math.random()*10)// iarray[i].img = "https://img2.baidu.com/it/u=1814565549,2954866278&fm=26&fmt=auto&gp=0.jpg"iarray[i].img = this.myImg[index]}},// 加载下一页数据handleScrolltolower () {if(this.hasMore) {this.params.skip += this.params.limitthis.getList()} else {uni.showToast({title: '没有更多数据啦',icon: "none"})}}}}
</script><style lang="scss" scoped>.category_tab {.category_tab_title {display: flex;justify-content: center;align-items: center;.title_inner {width: 70%;}.search_img {width: 17px;height: 20px;padding-bottom: 1%;margin-left: 10rpx;image {width: 100%;height: 100%;}}}.category_tab_content {display: flex;flex-wrap: wrap;height: calc( 100vh - 36px );.cate_item {width: 33.33%;border: 5rpx solid #FFFFFF;image {width: 100%;height: 300rpx;}}}}
</style>

在这里插入图片描述

四、实现视频声音开关以及转发

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

五、实现下载视频功能

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

在这里插入图片描述

<template><view class="video_play"><image :src="videoObj.img" mode=""></image><!-- 工具栏 开始--><view class="video_tool"><view @click="handleMuted" :class="['iconfont', muted ? 'icon-voice_stop':'icon-shengyin']"></view><view class="iconfont icon-zhuanfa"><button open-type="share"></button></view></view><!-- 工具栏 结束--><!-- 视频开始 --><view class="video_wrap"><video :muted="muted" :src="videoObj.video" objectFit="fill"></video></view><!-- 视频结束 --><!-- 下载开始 --><view class="download"><view class="download_btn" @click="handleDownload">下载高清视频</view></view><!-- 下载结束 --></view>
</template><script>export default {data() {return {videoObj: {},muted: false // 是否静音}},onLoad() {console.log(getApp().globalData)this.videoObj = getApp().globalData.video},methods: {// 开关声音handleMuted () {this.muted = !this.muted},// 下载视频async handleDownload () {await uni.showLoading({title: '下载中'})// 1. 将视频下载到小程序内存中const { tempFilePath } = (await uni.downloadFile({url: this.videoObj.video}))[1]// 2. 将内存中的文件 下载到本地await uni.saveVideoToPhotosAlbum({filePath: tempFilePath})uni.hideLoading()await uni.showToast({title: '下载成功'})}}}
</script><style lang="scss" scoped>.video_play {position: relative;image {position: absolute;width: 100vw;height: 100vh;z-index: -1;// css3滤镜filter: blur(10px);}.video_tool {height: 80rpx;display: flex;justify-content: flex-end;.iconfont {width: 80rpx;color: #FFFFFF;font-size: 50rpx;border-radius: 40rpx;background-color: rgba(0,0,0,.2);display: flex;align-items: center;justify-content: center;margin-right: 20rpx;}.icon-zhuanfa {position: relative;button {position: absolute;width: 100%;height: 100%;opacity: 0;}}}.video_wrap {display: flex;justify-content: center;align-items: center;video {width: 360rpx;height: 600rpx;}}.download {display: flex;justify-content: center;align-items: center;margin-top: 30rpx;.download_btn {width: 360rpx;height: 80rpx;border-radius: 40rpx;display: flex;justify-content: center;align-items: center;color: #FFFFFF;border: 3rpx solid #FFFFFF;background-color: rgba(0,0,0,.2);}}}
</style>

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/470385.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

problem b: 一年中的第几天_第九届蓝桥杯B组试题

1.标题&#xff1a;第几天2000年的1月1日&#xff0c;是那一年的第1天。那么&#xff0c;2000年的5月4日&#xff0c;是那一年的第几天&#xff1f;注意&#xff1a;需要提交的是一个整数&#xff0c;不要填写任何多余内容。“手动分割”大小月判断&#xff1a;https://jingyan…

一、express 路由 todos案例

一、express路由 动态路由参数 params 路径参数 query 二、 todos案例 2.1 准备工作 新建一个文件夹01-demo执行npm init -y 生成package.json配置文件执行npm install express --save 安装express新建app.js文件&#xff0c;这是程序的入口文件新建db.json文件&#xff0…

二、express中间件

一、中间件引入 实现加入日志模块功能&#xff1a; 1. 我们能想到的方案&#xff1a; 将日志输出代码封装到函数中&#xff0c;然后需要日志输出的地方调用这个函数即可。 app.js文件&#xff1a; const express require(express)const app express()const myLogger (r…

三、Express 路由

一、路由 路由是指应用程序的端点(URI)如何响应客户端请求. 你可以使用app与HTTP方法相对应的Express对象的方法来定义路由. 例如,app.get()处理GET请求和app.post POST 请求。 你还可以使用app.all()处理所有HTTP方法,并使用app.use()将中间件指定为回调函数. 这些路由方法…

RESTful 接口设计规范

一、RESTful 接口设计规范 1. 协议 API与用户的通信协议&#xff0c;尽量使用HTTPs协议。 2. 域名 应该尽量将API部署在专用域名之下。 https://api.example.com 如果确定API很简单&#xff0c;不会有进一步扩展&#xff0c;可以考虑放在主域名下。 https://example.org/ap…

是引进外部函数吗_使用PowerBI的这两个函数,灵活计算各种占比

计算个体占总体的比例是一个很常见的分析方式&#xff0c;它很简单&#xff0c;就是两个数字相除&#xff0c;但是当需要计算的维度、总体的范围发生动态变化时&#xff0c;如何灵活且快速的计算出各种占比&#xff0c;还是需要动一点心思的。本文就通过 DAX 中的 ALL 和 ALLSE…

WCF入门(五)---创建WCF服务

使用Microsoft Visual Studio2012创建WCF服务&#xff0c;理解如下所有必要的编码&#xff0c;更好地创建WCF服务的概念&#xff0c;这里做一个简单的任务。 启动Visual Studio 2012。 单击新建项目&#xff0c;然后在Visual C&#xff03;标签&#xff0c;选择WCF选项。 WCF服…

Express接口综合案例(创建项目、配置常用中间件、路由设计、提取控制器模块、配置错误统一处理中间件、用户注册的数据验证,密码加密)

一、创建项目 二、目录结构 三、配置常用中间件 3.1 解析请求体 express.json&#xff08;&#xff09;express.urlencoded&#xff08;&#xff09; 3.2 日志输出 morgan&#xff08;&#xff09; 3.3 为客户端提供跨域资源请求 cors&#xff08;&#xff09; 四、路…

二进制包如何知道go 版本_gops 是怎么和 Go 的运行时进行交互的?

本文基于 Go 1.13 和 gops 0.3.7.gops 旨在帮助开发人员诊断 Go 流程并与之交互。它提供了跟踪运行中的程序几秒钟的功能&#xff0c;可以通过获取 CPU 配置文件 pprof&#xff0c;甚至可以直接与垃圾收集器进行交互。发现gops 提供发现服务&#xff0c;该服务能够列出计算机上…

基于JWT的身份认证学习笔记

JSON Web Token&#xff08;缩写JWT&#xff09;是目前最流行的跨域认证解决方案。 一、跨域认证的问题 互联网服务离不开用户认证。一般流程是下面这样。 1、用户向服务器发送用户名和密码。 2、服务器验证通过后&#xff0c;在当前对话&#xff08;session&#xff09;里面保…

ssh 端口_【科普】SSH都不懂,还搞什么网络

今天小编为大家分享一篇关于SSH 的介绍和使用方法的文章。本文从SSH是什么出发&#xff0c;讲述了SSH的基本用法&#xff0c;之后在远程登录、端口转发等多种场景下进行独立的讲述&#xff0c;希望能对大家有所帮助。1. 什么是SSH&#xff1f;SSH是一种网络协议&#xff0c;用于…

二维码扫描和应用跳转

转载自&#xff1a; http://sindrilin.com/ios-dev/2015/11/01/二维码扫描和应用跳转.html 前面我们已经调到过怎么制作二维码&#xff0c;在我们能够生成二维码之后&#xff0c;如何对二维码进行扫描呢&#xff1f; 在iOS7之前&#xff0c;大部分应用中使用的二维码扫描是第三…

oracle 锁表如何解决_Java高并发解决什么方式

对于我们开发的网站&#xff0c;如果网站的访问量非常大的话&#xff0c;那么我们就需要考虑相关的并发访问问题了。而并发问题是绝大部分的程序员头疼的问题&#xff0c;但话又说回来了&#xff0c;既然逃避不掉&#xff0c;那我们就坦然面对吧~今天就让我们一起来研究一下常见…

Express接口案例 使用jsonwebtoken

一、jsonwebtoken的使用 jsonwebtoken官方文档 const jwt require(jsonwebtoken) // 以同步的方式&#xff0c;生成jwt // const token jwt.sign({ // foo: bar // }, zepzepep)// 以异步的方式&#xff0c;生成jwt const token jwt.sign({foo: bar }, zepzepep, (err, …

php 日期转毫秒_【小技巧】 各种日期操作方法汇总

虽然现在处理日期方面已经有了很成熟的也很好用的库&#xff0c;例如(momentjs和date-fns)&#xff0c;但是在实际开发中&#xff0c;我们有时候可能并不需要整个库。所以我就在下面整理了在前端开发时对日期时间的各种操作&#xff0c;也算是比较全的了。其中一部分来自自己&a…

Express接口案例——完成文章增删改查接口

一、创建文章的Model var mongoose require(mongoose) const baseModel require(./base-model.js) const Schema mongoose.Schemaconst articleSchema new mongoose.Schema({title: {type: String,required: true},description: {type: String,required: true},// 文章内容…

Express接口案例——完成文章评论相关的接口

一、评论的Model {"comment": {"id": 1,"createdAt": "2016-02-18T03:22:56.637Z","updatedAt": "2016-02-18T03:22:56.637Z","body": "It takes a Jacobian","author": {"us…

通过set方式注入的bean为null_Spring 注入集合

注入集合你已经看到了如何使用 value 属性来配置基本数据类型和在你的 bean 配置文件中使用标签的 ref属性来配置对象引用。这两种情况下处理奇异值传递给一个 bean。现在如果你想传递多个值&#xff0c;如 Java Collection 类型 List、Set、Map 和 Properties&#xff0c;应该…

Express与传统Web应用(服务端渲染、art-template模板引擎、配置静态资源托管)

一、服务端渲染相关的概念 什么是渲染&#xff1f; 例如对于我们前端开发者来说最常见的一种场景就是&#xff1a;请求后端接口数据&#xff0c;然后将数据通过模板绑定语法绑定到页面中&#xff0c;最终呈现给用户。 数据&#xff1a; 模板&#xff1a; 渲染&#xff08;…

税收分类编码2020_增值税开票系统你会吗?2020最新开票(金税盘版)图文教程详细版...

做会计的都或多或少的涉及到增值税&#xff0c;增值税也算是我们税务里面占比比较大的&#xff0c;那么增值税发票怎么开&#xff1f;增值税开票软件怎么操作&#xff1f;你都会吗&#xff1f;你曾经会是不是都忘记了&#xff1f;今天会计君和大家分享一份完整的增值税发票开票…