代码如下:
<scripttype="text/javascript">functionvidplay() {varvideo =
document.getElementById("Video1")varbutton =
document.getElementById("play")if(video.paused) {
video.play()
button.textContent ="||"
}else{
video.pause()
button.textContent =">"
}
}functionrestart() {varvideo = document.getElementById("Video1")
video.currentTime = 0
}functionskip(value) {varvideo = document.getElementById("Video1")
video.currentTime += value
}</script></head><body><videoid="Video1">// Replace these with your own video files.<sourcesrc="demo.mp4"type="video/mp4"/>
<sourcesrc="demo.ogv"type="video/ogg"/>HTML5 Video is required for this example.<ahref="demo.mp4">Download the video</a>file.</video><divid="buttonbar">
<buttonid="restart"onclick="restart()">[]</button><buttonid="rew"onclick="skip(-10)"><<</button><buttonid="play"onclick="vidplay()">></button>
<buttonid="fastFwd"onclick="skip(10)">>></button></div>
扩展资料:注意事项
一、history.pushState(data, title [, url])
往历史记录堆栈顶部添加一条记录;
data: onpopstate事件触发时作为参数传递过去;
url: 页面地址,可选,缺省为当前页地址;
二、history.replaceState(data, title [, url])
更改当前的历史记录,参数同上;
三、history.state:
用于存储以上方法的data数据,不同浏览器的读写权限不一样;
四、window.onpopstate:响应pushState或replaceState的调用;
HTML实现 后退【window.history.back()】默认
HTML实现 后退【window.history.back(-1)】 括号里面的负数字代表后退几个页面,如果是-2的话就代表后退2页
HTML实现 前进【window.history.forward()】//不常用
HTML实现 前进【window.history.forward(1)】//不常用 括号里面的正数就代表要前进的页。如果是3就表示前进3页
[html] view plain copy
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
</head>
<body>
<p>这是第一个页面</p>
<a href="HTMLPage2.htm">到dom页</a>
<input type="button" onclick="javascript:window.history.back()" value="后退"/>
<input type="button" onclick="javascript:window.history.forward()" value="前进" />
</body>
</html>
[html] view plain copy
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
</head>
<body>
<p>这是第二个页面</p>
<a href="HTMLPage3.htm">转到第一页</a>
<a href="javascript:window.history.back()">后退</a>
<a href="javascript:window.history.forward()">前进</a>
</body>
</html>
这是一个可以用来增强HTML5播放器的油猴脚本,它除了可以对百度云网盘视频进行加速播放以外,还能提供其他播放增强功能。 速度调节:对百度云网盘视频进行加速、减速播放; 播放时间定位:视频快进、快退、上一帧、下一帧; 图像参数调节:对视频亮度、对比度、饱和度等进行调节; 画面调整:90度旋转等。 在greasyfork网站上安装HTML5播放器增强脚本 接下来,打开百度云盘的视频播放页面,就可以通过快捷键对它进行 *** 作了。 其中按键C是加速播放 +0.1,按键X是减速播放 -0.1,其他快捷键说明请查看脚本详情页。 以上方法仅针对谷歌浏览器和Chromium内核的浏览器,火狐浏览器则可以直接登录百度网盘网页版,打开视频,然后鼠标右击就可以选择播放速度了油猴脚本安装地址:https://kobuchi.cn/web/538欢迎分享,转载请注明来源:内存溢出
评论列表(0条)