设评论的跳转时间,把键盘调到英文键盘然后点数字,再加中间那个冒号就可以了,设的数字不能大于视频秒数,像这个视频只能设十八秒以内,00:01 00:10这样,然后发了评论之后,点数字视频就会跳转到设置的时间。
简单实现效果:
代码:
<template>
<div>
<div id="mse"></div>
<input style="width:500px;height:50px;font-size:20px;" type="text" v-model="commentInput" @blur="handleInput" />
<!-- <button @click="sendComment">发送评论</button> -->
<div>
<span v-for="time in times" :key="time" class="text" @click="getJump(time)">{ { time }}</span>
</div>