1. 程式人生 > >HTML5中Video,禁止右鍵下載

HTML5中Video,禁止右鍵下載

Html5 Html5 Video 右鍵禁止

HTML5中Video,禁止右鍵下載


<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>LOVE</title>
<script src="http://cdn.static.runoob.com/libs/jquery/1.10.2/jquery.min.js">
</script>
<script>
$(document).ready(function(){
$(‘#myVideo‘).bind(‘contextmenu‘,function() { return false; });

});
</script>
</head>
<body>
<video style="position:absolute;margin:auto;top:0px;left:0px;right:0px;bottom:0px" id="myVideo" width="320" height="240" controls>
<source src="movie.mp4" type="video/mp4">
</video>
</body>
</html>


實現居中顯示:
style="position:absolute;margin:auto;top:0px;left:0px;right:0px;bottom:0px"
禁止右鍵下載:
<script>
$(document).ready(function(){
$(‘#myVideo‘).bind(‘contextmenu‘,function() { return false; });
});

</script>

HTML5中Video,禁止右鍵下載