用H5與CSS3制作全屏背景輪換播放圖文說明教程
發(fā)表時間:2024-05-07 來源:明輝站整理相關軟件相關文章人氣:
[摘要]這次給大家?guī)碛肏5和CSS3制作全屏背景輪換播放的制作方法,怎么用H5制作特效?H5和CSS3在使用過程中的注意事項有哪些,下面就是實戰(zhàn)案例,一起來看一下。<!doctype html><html><head><meta charset="UT...
這次給大家?guī)碛肏5和CSS3制作全屏背景輪換播放的制作方法,怎么用H5制作特效?H5和CSS3在使用過程中的
注意事項有哪些,下面就是實戰(zhàn)案例,一起來看一下。
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>全屏背景輪換播放</title>
<meta name="keywords" content="全屏背景輪換播放" />
</head>
<body>
<style>
#bg{ position:fixed; top:0; left:0; bottom:0; right:0; z-index:-1; filter:alpha(opacity=100);
-moz-opacity:1; -khtml-opacity: 1; opacity: 1; } #bg > img { height:100%;
width:100%; border:0; }
</style>
<body>
<div id="bg">
<img src="./bg/3.jpg">
</div>
<script src="./js/jquery.js"></script>
<script type="text/javascript">
var num = 0;
var bg_src = new Array("./bg/1.jpg", "./bg/2.jpg","./bg/4.jpg", "./bg/6.jpg", "./bg/7.jpg","./bg/8.jpg");
//這個數(shù)組就是背景圖的地址
setInterval("showTime()", 5000);//定時時間,5秒
function showTime() {
if (num == bg_src.length) {
num = 0;
}
$("#bg").fadeOut(1000,function(){
$("#bg").html('<img src="' + bg_src[num] + '">');
$("#bg").fadeIn(1000);
})
num = num + 1;
}
</script>
<div style="width: 100%; height: 50px; line-height: 50px; text-align: center; color: #fff; position: absolute; bottom: 0px;">
</div>
<div style="width: 300px; height: 235px; background: #fff; position: fixed; top: 0px; z-index: 10000; right: 0px;">
<script type="text/javascript">
var cpro_id = "u2580454";
</script>
<script src="http://cpro.baidustatic.com/cpro/ui/c.js" type="text/javascript"></script>
</div>
</body>
</html>
相信看了這些案例你已經(jīng)掌握了方法,更多精彩請關注php中文網(wǎng)其它相關文章!
相關閱讀:
用H5制作煙花粒子特效的制作方法
HTML的網(wǎng)頁錯位原因以及解決方法
html與xhtml的區(qū)別詳解
以上就是用H5和CSS3制作全屏背景輪換播放教程的詳細內(nèi)容,更多請關注php中文網(wǎng)其它相關文章!
網(wǎng)站建設是一個廣義的術語,涵蓋了許多不同的技能和學科中所使用的生產(chǎn)和維護的網(wǎng)站。