欢迎来到代码驿站!

jquery

当前位置:首页 > 网页前端 > jquery

jQuery实现视频作为全屏幕背景

时间:2021-06-06 08:49:12|栏目:jquery|点击:

先上效果图

完整代码如下

复制代码 代码如下:

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>如何使用jQuery制作全屏幕背景的嵌入mp4-柯乐义</title>
<meta name="description" content="柯乐义使用jQuery 制作全屏幕背景的嵌入视频" />
<meta name="author" content="Keleyi" />
<link rel="stylesheet" href="http://keleyi.com/keleyi/phtml/jqtexiao/28/css/style.css">
<link rel="stylesheet" href="http://keleyi.com/keleyi/phtml/jqtexiao/28/BigVideo/css/bigvideo.css">
</head>
<body>
<div class="main">
<div id="overview" class="box">
<h1>一只小蜜蜂,飞在花丛中</h1>
<h2>左飞飞,右飞飞,剪刀、石头、布</h2>
<h2>请使用<a href="http://keleyi.com/a/bjac/g039tue3.htm">支持HTML5的浏览器</a>查看本页。<a href="http://keleyi.com/a/bjad/s11hwa0d.htm">原文</a></h2>
</div>
</div>
<!-- BigVideo Dependencies -->
<script src="http://keleyi.com/keleyi/pmedia/jquery/jquery-2.1.1.min.js"></script>
<script src="http://keleyi.com/keleyi/phtml/jqtexiao/28/jquery-ui.min.js"></script>
<script src="http://keleyi.com/keleyi/phtml/jqtexiao/28/video.js/video.js"></script>
<!-- BigVideo -->
<script src="http://keleyi.com/keleyi/phtml/jqtexiao/28/BigVideo/lib/bigvideo.js"></script>
<!-- Demo -->
<script>
$(function () {
var BV = new $.BigVideo();
BV.init();
BV.show('http://down.keleyi.com/files/Keleyi.mp4', { doLoop: true });
});
</script>
</body>
</html>

小伙伴们记得要使用支持html5的浏览器来查看本特效哦。

上一篇:jQuery实现鼠标经过购物车出现下拉框代码(推荐)

栏    目:jquery

下一篇:jQuery操作基本控件方法实例分析

本文标题:jQuery实现视频作为全屏幕背景

本文地址:http://www.codeinn.net/misctech/136633.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有