1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97
| let player = new Player({ id: 'xgVideo', url: './video.mp4', poster: './show_img_2.png', playbackRate: [0.5, 0.75, 1, 1.5, 2], defaultPlaybackRate: 1, width: 800, height: 400, fluid: true, volume: 0.6, autoplay: true, loop: false, videoInit: false, rotateFullscreen: true, download: true, controls: true, pip: true, screenShot: true, keyShortcut: 'on', errorTips: `请<span>刷新</span>试试`, execBeforePluginsCall: [() => { console.log('Execute before plugins call') }],
danmu: { panel: true, comments: [ { duration: 15000, id: '1', start: 3000, prior: true, color: true, txt: '长弹幕长弹幕长弹幕长弹幕长弹幕长弹幕长弹幕长弹幕长弹幕长弹幕', style: { color: '#ff9500', fontSize: '20px', border: 'solid 1px #ff9500', borderRadius: '50px', padding: '5px 11px', backgroundColor: 'rgba(255, 255, 255, 0.1)' }, mode: 'scroll' } ], area: { start: 0, end: 1 }, closeDefaultBtn: true, defaultOff: false }
});
|