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

微信小程序 覆盖组件cover-view

wxml

覆盖组件

<video src="../image/1.mp4" controls="{{false}}" event-model="bubble">

  <cover-view class="controls">

    <cover-view class="play" bind:tap="play">

      <cover-image class="img" src="../image/2.jpg" />

    </cover-view>

    <cover-view class="pause" bind:tap="pause">

      <cover-image class="img" src="../image/1.jpg" />

    </cover-view>

    <cover-view class="time">00:00

    </cover-view>

  </cover-view>

</video>

+

Page({
  data: {
    indicatorDots: true,
    vertical: false,
    autoplay: true,
    interval: 2000,
    duration: 500,
    imgurls: ["../image/2.jpg", "../image/1.jpg", "../image/3.jpg", "../image/4.jpg", "../image/5.jpg"]
  },
  onReady() {
    this.videoCtx = wx.createVideoContext('myvideo')
  },
  play(){
    this.videoCtx.play()
  },
  pause(){
    this.videoCtx.pause()
  },

/* pages/test/test.wxss */
.controls {
  position: relative;
  top: 50px;
  height: 50px;
  margin-top: -25px;
  display: flex;
}

.play, .pause, .time {
  flex: 1;
  height: 100%;
}

.time {
  text-align:  center;
  background-color: rgb(0, 0, 5);
  color: white;
  line-height: 50px;
}

.img {
  width: 40px;
  height: 40px;
  margin: 5px auto;
}


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

相关文章:

  • 出现 Error during query execution: StatementCallback; bad SQL grammar 解决方法
  • Git的.gitignore文件详解与常见用法
  • 虚拟机中的时统卡功能和性能调优
  • 自由学习记录(31)
  • Docker--Docker Container(容器) 之 操作实例
  • 【Rust自学】9.1. 不可恢复的错误以及panic!
  • Vue.js 使用 Vue CLI 创建项目:快速上手指南
  • 【蓝桥杯选拔赛真题85】python摆放箱子 第十五届青少年组蓝桥杯python选拔赛真题 算法思维真题解析
  • 2-6-1-1 QNX编程入门之进程和线程(六)
  • Linux的诞生与发展、体系结构与发行版本
  • Android使用JAVA调用JNI原生C++方法
  • 【Spark】架构与核心组件:大数据时代的必备技能(上)
  • 【VBA】EXCEL - VBA 遍历工作表的 5 种方法,以及注意事项
  • 网神SecFox FastJson反序列化RCE漏洞复现(附脚本)
  • Java 编程探秘之饿汉式单例设计模式:原理、优势与实战应用全解析,开启高效代码世界的大门
  • android stdudio环境: gradle一直安装失败
  • Linux(13)——网络概述
  • 基于单片机的蓄电池内阻检测系统设计(论文+源码)
  • pytorch torch.nn.LayerNorm类介绍
  • Spring Boot + Redisson 封装分布式锁
  • NLP 中文拼写检测纠正论文 C-LLM Learn to CSC Errors Character by Character
  • vue3中使用el-tag结合element-plus使用方法
  • RuntimeError: CUDA error: initialization
  • sqlserver镜像设置
  • 基于 Python Django 的二手电子设备交易平台(附源码,文档)
  • C#学习1:C#初接触,一些基础内容备忘和相关报错说明