Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
hello uni-app x
提交
cf115e6e
H
hello uni-app x
项目概览
DCloud
/
hello uni-app x
通知
5995
Star
90
Fork
162
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
18
列表
看板
标记
里程碑
合并请求
1
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
H
hello uni-app x
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
18
Issue
18
列表
看板
标记
里程碑
合并请求
1
合并请求
1
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
cf115e6e
编写于
9月 09, 2024
作者:
DCloud-yinjiacheng
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
更新video示例
上级
db7068ef
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
31 addition
and
1 deletion
+31
-1
pages/component/video/video.uvue
pages/component/video/video.uvue
+31
-1
未找到文件。
pages/component/video/video.uvue
浏览文件 @
cf115e6e
...
...
@@ -15,6 +15,9 @@
src="../../../static/test-video/fast-backward.png" @tap="fastBackward"></image>
<image v-if="subCompEnable && subCompShow" class="img-fast-forward"
src="../../../static/test-video/fast-forward.png" @tap="fastForward"></image>
<input id="input-send-danmu" class="input-send-danmu" v-if="subCompEnable && subCompShow" placeholder="请输入弹幕内容"
placeholder-style="color: white;" confirm-type="send" @confirm="onSendDanmuConfirm"
@keyboardheightchange="onSendDanmuKeyboardHeightChange" @blur="onSendDanmuBlur"></input>
<!-- #endif -->
</video>
<scroll-view class="uni-padding-wrap uni-common-mt uni-flex-item">
...
...
@@ -25,7 +28,7 @@
</view>
<!-- #ifdef APP-ANDROID -->
<view class="uni-flex uni-btn-v" style="justify-content: space-between;align-items: center;">
<text class="uni-title" style="width: 80%;">子组件实现快进、快退功能(全屏后显示)</text>
<text class="uni-title" style="width: 80%;">子组件实现快进、快退
、发送弹幕
功能(全屏后显示)</text>
<switch :checked="subCompEnable" @change="onSubCompEnableChange" />
</view>
<!-- #endif -->
...
...
@@ -276,6 +279,23 @@
if (pos > this.endPos) pos = this.endPos;
this.seek(pos);
},
onSendDanmuConfirm: function (event : UniInputConfirmEvent) {
this.videoContext?.sendDanmu({
text: event.detail.value,
color: '#ff0000'
} as Danmu);
},
onSendDanmuKeyboardHeightChange: function (event : UniInputKeyboardHeightChangeEvent) {
const element = uni.getElementById('input-send-danmu') as UniElement;
if (event.detail.height.toInt() == 0) {
element.style.setProperty('bottom', '50px');
} else {
element.style.setProperty('bottom', event.detail.height + element.getBoundingClientRect().height);
}
},
onSendDanmuBlur: function (_ : UniInputBlurEvent) {
(uni.getElementById('input-send-danmu') as UniElement).style.setProperty('bottom', '50px');
},
// 属性
onSrcComfirm: function (event : UniInputConfirmEvent) {
let value = event.detail.value;
...
...
@@ -575,4 +595,14 @@
transform: translate(50%, -50%);
position: absolute;
}
.input-send-danmu {
height: 40px;
padding: 8px 13px;
margin: 0 var(--status-bar-height);
bottom: 50px;
position: absolute;
background-color: rgba(0, 0, 0, 0.5);
color: #FFF;
}
</style>
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录