用H5和CSS3制作全屏背景轮换播放教程


本文摘自PHP中文网,作者php中世界最好的语言,侵删。

这次给大家带来用H5和CSS3制作全屏背景轮换播放的制作方法,怎么用H5制作特效?H5和CSS3在使用过程中的注意事项有哪些,下面就是实战案例,一起来看一下。

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

<!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");

        //这个数组就是背景图的地址

        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>

相信看了这些案例你已经掌握了方法,更多精彩请关注php中文网其它相关文章!

阅读剩余部分

相关阅读 >>

HTML5和app的区别是什么

ie8兼容css3吗

h5的video如何实现以及操作弹幕

css3 @media怎么不起作用?是什么原因?

HTML5离线应用application cache的代码详解

HTML5中canvas的使用--画线和面

iconfont图标引用的方法步骤(代码)

css3如何实现元素环绕中心点布局(代码示例)

css3有什么用

谷歌浏览器不支持css3吗

更多相关阅读请进入《HTML5》频道 >>




打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,您说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

评论

管理员已关闭评论功能...