W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗(yàn)值獎勵
基礎(chǔ)庫 1.0.0 開始支持本組件。
視頻組件。相關(guān) API 請參考 tt.createVideoContext。
屬性 | 類型 | 默認(rèn)值 | 必填 | 說明 | 最低支持版本 |
---|---|---|---|---|---|
src | string | 是 | 要播放的視頻資源地址 | 1.0.0 | |
autoplay | boolean | false | 否 | 是否自動播放 | 1.0.0 |
poster | string | 否 | 視頻封面的圖片網(wǎng)絡(luò)資源地址 | 1.0.0 | |
bindplay | eventhandle | 否 | 當(dāng)開始播放時(shí)觸發(fā) play 事件 | 1.0.0 | |
bindpause | eventhandle | 否 | 當(dāng)暫停播放時(shí)觸發(fā) pause 事件 | 1.0.0 | |
bindended | eventhandle | 否 | 當(dāng)播放到末尾時(shí)觸發(fā) ended 事件 | 1.0.0 | |
binderror | eventhandle | 否 | 視頻播放出錯時(shí)觸發(fā) error 事件 | 1.0.0 | |
bindtimeupdate | eventhandle | 否 | 播放進(jìn)度變化時(shí)觸發(fā),event.detail = { currentTime, duration } | 1.18.0 | |
bindfullscreenchange | eventhandle | 否 | 視頻進(jìn)入和退出全屏?xí)r觸發(fā) | 1.18.0 | |
loop | boolean | false | 否 | 是否循環(huán)播放 | 1.47.0 |
show-fullscreen-btn | boolean | true | 否 | 是否顯示全屏按鈕 | 1.47.0 |
show-play-btn | boolean | true | 否 | 是否顯示播放、暫停、重播按鈕,不包括視頻封面的播放按鈕 | 1.47.0 |
controls | boolean | true | 否 | 是否顯示全部播放控件 | 1.47.0 |
object-fit | string | contain | 否 | 當(dāng)視頻大小與 video 容器大小不一致時(shí),視頻的表現(xiàn)形式:contain(包含),fill(填充),cover(覆蓋) | 1.47.0 |
play-btn-position | string | center | 否 | 播放按鈕的位置:center(視頻中間),bottom(控制條上) | 1.47.0 |
bindwaiting | eventhandle | 否 | 視頻出現(xiàn)緩沖時(shí)觸發(fā) | 1.47.0 |
<video
src="http://sf1-ttcdn-tos.pstatp.com/obj/ttfe/test/test-upload.mp4" rel="external nofollow"
autoplay
bindplay="play"
bindpause="pause"
bindended="ended"
bindtimeupdate="timeupdate"
bindfullscreenchange="fullscreenchange"
/>
Page({
play: function(e) {
tt.showToast({ title: "play" });
},
pause: function(e) {
tt.showToast({ title: "pause" });
},
ended: function(e) {
tt.showToast({ title: "ended" });
},
timeupdate: function(e) {
console.log(e);
},
fullscreenchange: function(e) {
console.log(e);
}
});
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報(bào)電話:173-0602-2364|舉報(bào)郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: