首页 > Web开发 > 详细

js+css让背景图片动起来

时间:2017-11-09 19:15:27      阅读:377      评论:0      收藏:0      [点我收藏+]
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>css+js让背景图片动起来</title>
    <style>
        *{
            margin:0;
            padding:0;
        }
        #section{
            width: 800px;
            height: 300px;
            margin:0 auto;
            background:url("images/timg_11.jpg");
            background-position-x: 0px;
            background-position-y: 0px;
            background-repeat: repeat;
            background-size:400px 300px;
        }
        .cover{
            width: 100%;
            height: 100%;
            background:rgba(0,0,0,0.5);
            position: relative;
        }
        .cover>h1{
            color: #fff;
            position:absolute;
            top:183.5px;
            left:314.5px;
        }
    </style>
</head>
<body>

<section id="section">
    <div class="cover">
        <h1>WELL IS DONE</h1>
    </div>
</section>
<script src="js/jquery-3.2.1.min.js"></script>
<script>
    var section = $(‘#section‘);
    var x =0;
    function polling() {
        x += 5;
        section.animate({
            ‘background-position-x‘: x+‘%‘,
        }, 400, ‘linear‘);
        setTimeout(polling,300)
    }

    polling();
</script>

</body>
</html>

 

js+css让背景图片动起来

原文:http://www.cnblogs.com/yingleiming/p/7810772.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!