安装dxwebsetup.exe这个文件
本产品需要DirectX9.0c以上的版本。
请在放入DVD-ROM后所显示的安装画面中,选择「安装DirectX9.0c」来安装DirectX9.0c,
或是执行DVD-ROM内的「DirectX
9.0c」-「dxsetup.exe」。
html中如何添加本地视频
方法/步骤
示例一: (复制以下代码到你的文本文档中,改名为lady.html)
<!DOCTYPE HTML>
<html>
<body>
<video src="1\LADY.mp4">您的浏览器不支持video标签</video>
<body>
</html>
打开后如图所示,你能看到一个类似与图片的页面。
1、SRC标签说明:
或许有些人进去以后什么都没显示?
不要着急,一定是你的视频设的路径不对。
2、SRC=“这儿是你放视频的位置”
如果你的视频叫 lady.mp4 那代码就应该是 src="lady.mp4"
如果你想整理一下,把他放在了 media文件下。。。。那代码就应该是 src="media\lady.mp4"
3、controls标签说明:
如果出现该属性,则向用户显示控件,比如播放按钮,暂停,快进等按钮。
<video src="1\LADY.mp4" controls>您的浏览器不支持video标签</video>
4、Height、Wigth标签:
跟他的意思一样,用来修改视频播放器的尺寸,这个你可以自己调试。
<video src="1\LADY.mp4" controls height="600" wight="800">您的浏览器不支持video标签</video>
5、Autoplay标签:
如果出现该属性,则视频在就绪后马上播放。
<video src="1\LADY.mp4" autoplay>您的浏览器不支持video标签</video>
步骤阅读
6、LOOP标签:
如果出现该属性,则当媒介文件完成播放后再次开始播放。其实就是循环播放了,这个就不截图了。
7、preload标签:
很多时候在本地测试很流畅,但上传了网站就感觉很卡,这是网速的关系,在这儿利用这个标签,可以实现缓冲前,不至于看的那么卡。
<!DOCTYPE html><head lang="zh-cn">
<meta charset="UTF-8" />
<title>Table</title>
<link href="index.css" rel="stylesheet" type="text/css">
</head>
<body>
<div id="maxcontainer">
<div id="toprectangle">学习目标一览</div>
<ul id="leftul">
<li>今天的内容&nbsp&&nbsp剩余</li>
<li>学习时间&nbsp&&nbsp限定时间</li>
<li>学习材料进度&nbsp&&nbsp剩余</li>
<li>达成个数&nbsp&&nbsp总数目</li>
</ul>
<ul id="rightul">
<li class="special">If,for</li>
<li class="special">while...</li>
<li>2时间</li>
<li>2时间</li>
<li>50什么不认识</li>
<li>50什么不认识</li>
<li>5个</li>
<li>5个</li>
</ul>
<div class="clear"></div>
<div id="buttoncontainer">
<input type="button" value="日语不认识" class="btn1"/>
<input type="button" value="日语不认识" class="btn2"/>
</div>
</div>
</body>
</html>
下面是CSS文件
* {margin: 0
padding: 0
font-size: 15px
font-family: Arial, "Microsoft Yahei", "Arial Black"
font-weight: bold
text-shadow: 0px 0px 4px #666
letter-spacing: 1px
}
body {
background-color: #333
}
#maxcontainer {
position: relative
margin: 60px auto 0
width: 600px
height: 374px
border-radius: 4px
background: -webkit-gradient(linear, 0 0, 0 100%, from(#eee), to(#aaa))
background: -moz-linear-gradient(top, #eee, #aaa)
background: -o-linear-gradient(top, #eee, #aaa)
background: -ms-linear-gradient(#eeeeee 0%,#aaaaaa 100%)
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee',endColorstr='#aaaaaa',grandientType=1)
-ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee',endColorstr='#aaaaaa',grandientType=1)
}
#toprectangle {
position: relative
margin: 2px auto
top: 4px
width: 592px
height: 36px
line-height: 36px
text-align: center
text-shadow: 0px 0px 4px #aaa
box-shadow: 0px 0px 4px #333
border-radius: 4px
background: -webkit-gradient(linear, 0 0, 0 100%, from(#D6D0FF), to(#9C8AFF))
background: -moz-linear-gradient(top, #D6D0FF, #9C8AFF)
background: -o-linear-gradient(top, #D6D0FF, #9C8AFF)
background: -ms-linear-gradient(#D6D0FF 0%,#9C8AFF 100%)
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#D6D0FF',endColorstr='#9C8AFF',grandientType=1)
-ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#D6D0FF',endColorstr='#9C8AFF',grandientType=1)
}
ul li {
position: relative
margin: 2px 0
float: left
height: 50px
line-height: 50px
color: white
text-align: center
box-shadow: 2px 0px 6px #333
border-radius: 4px
}
ul li:active {
box-shadow: inset 2px 2px 4px #666
}
#leftul, #rightul {
position: relative
list-style: none
float: left
margin: 2px
top: 2px
height: 252px
}
#leftul {
left: 2px
width: 166px
}
#rightul {
width: 426px
}
#leftul li {
width: 166px
background: -webkit-gradient(linear, 0 0, 0 100%, from(#ffa34b), to(#ff6f00))
background: -moz-linear-gradient(top, #ffa34b, #ff6f00)
background: -o-linear-gradient(top, #ffa34b, #ff6f00)
background: -ms-linear-gradient(#ffa34b 0%,#ff6f00 100%)
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffa34b',endColorstr='#ff6f00',grandientType=1)
-ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffa34b',endColorstr='#ff6f00',grandientType=1)
}
#rightul li {
margin: 2px
width: 209px
text-align: left
text-indent: 8px
text-shadow: #999 0px 0px 4px
background: -webkit-gradient(linear, 0 0, 0 100%, from(#BCC5D1), to(#949EAC))
background: -moz-linear-gradient(top, #BCC5D1, #949EAC)
background: -o-linear-gradient(top, #BCC5D1, #949EAC)
background: -ms-linear-gradient(#BCC5D1 0%,#949EAC 100%)
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#BCC5D1',endColorstr='#949EAC',grandientType=1)
-ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#BCC5D1',endColorstr='#949EAC',grandientType=1)
}
#rightul .special {
background: -webkit-gradient(linear, 0 0, 0 100%, from(#D9D7DD), to(#B2AEBD))
background: -moz-linear-gradient(top, #D9D7DD, #B2AEBD)
background: -o-linear-gradient(top, #D9D7DD, #B2AEBD)
background: -ms-linear-gradient(#D9D7DD 20%,#B2AEBD 100%)
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#D9D7DD',endColorstr='#B2AEBD',grandientType=1)
-ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#D9D7DD',endColorstr='#B2AEBD',grandientType=1)
}
#buttoncontainer {
position: relative
margin: 0px auto 0px
width: 356px
height: 60px
}
.btn1 {
position: relaive
float: left
width: 40%
height: 60px
border: 0px
border-radius: 4px
color: white
box-shadow: 0px 4px 8px #333
background: -webkit-gradient(linear, 0 0, 0 100%, from(#AD9BFF), to(#8B79EE))
background: -moz-linear-gradient(top, #AD9BFF, #8B79EE)
background: -o-linear-gradient(top, #AD9BFF, #8B79EE)
background: -ms-linear-gradient(#AD9BFF 0%,#8B79EE 100%)
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#AD9BFF',endColorstr='#8B79EE',grandientType=1)
-ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#AD9BFF',endColorstr='#8B79EE',grandientType=1)
}
.btn1:active {
line-height: 62px
text-indent: 2px
text-shadow: 0px 0px 4px #333
}
.btn2 {
position: relaive
float: right
width: 40%
height: 60px
border: 0px
border-radius: 4px
box-shadow: 0px 2px 8px #333
text-shadow: 0px 0px 4px #CCC
background: -webkit-gradient(linear, 0 0, 0 100%, from(#DBD5FF), to(#AD9BFF))
background: -moz-linear-gradient(top, #DBD5FF, #AD9BFF)
background: -o-linear-gradient(top, #DBD5FF, #AD9BFF)
background: -ms-linear-gradient(#DBD5FF 0%,#AD9BFF 100%)
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#DBD5FF',endColorstr='#AD9BFF',grandientType=1)
-ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#DBD5FF',endColorstr='#AD9BFF',grandientType=1)
}
.btn2:active {
line-height: 62px
text-indent: 2px
text-shadow: 0px 0px 4px #ccc
}
.clear {
line-height: 0px
clear: both
}
以上,是完整的代码。用到了CSS3,所以浏览的时候用比较新的版本的浏览器效果会更好。
下面是在Chrome下浏览的截图:
渐变效果 CSS HACK 参考: 琼台博客 《CSS3实现背景颜色线性渐变gradient》
文章的链接地址:http://www.qttc.net/201304316.html
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)