码迷,mamicode.com
首页 > 其他好文 > 详细

变色爱心页面

时间:2018-02-14 11:43:59      阅读:219      评论:0      收藏:0      [点我收藏+]

标签:for   html   anim   title   utf-8   auto   mes   content   transform   

<!DOCTYPE html">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>网页</title>
    <style type="text/css">
            /*存放元素的区域,将其绝对居中*/
        
    .content{
        position: absolute;
        height:300px;
        width:450px;
        top:0px;
        left:0px;
        bottom: 0px;
        right:0px;
        background-color:#AAA;
        margin:auto;
        box-shadow: 5px  0px 5px #a22,-5px  0px 5px #a22,0px  5px 5px #a22,0px  -5px 5px #a22;
        box-shadow:0 0 5px green inset;
            
        }
        
        .left,.right{
            position:absolute;
            height:150px;
            width:100px;
            background-color:red;
        top:0px;
        bottom: 0px;
        margin:auto;    
        border-radius:50px 50px 0 0;
        
        box-shadow: 2px  0 0 #a13;
        
        animation:changecolor 5s infinite ;
        animation-delay:1s;
        
        }
        
        .left{
        margin-left:100px;
        transform:rotate(-45deg);
        }
        
        
        .right{
            margin-left:136px;
            transform:rotate(45deg);
        }
        

        
        @keyframes changecolor{
            0%{background-color:red;}
            25%{background-color:green;}
            50%{background-color:blue;}
            75%{background-color:yellow;}
            100%{background-color:red;}
        }
        
        
        
        
    </style>
</head>
<body>
    <!--  -->
        <div class=‘content‘>
            <div class=‘left‘ ></div>
            <div class=‘right‘ ></div>
        </div>

    
        
</body>
</html>

 

变色爱心页面

标签:for   html   anim   title   utf-8   auto   mes   content   transform   

原文地址:https://www.cnblogs.com/zhangzonghua/p/html.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!