第一章:初识css3

<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8" />
    <title>hello css3</title>
    <link rel="stylesheet" href="css/style.css" />
</head>
<body>
    <h1>hello css3!</h1>
</body>
</html>
h1{
    text-align: center;
    font-size: 60px;
    text-shadow: 5px 5px blule;
    transform-style: preserve-3d;
    -webkit-animation: my 9s;
}
@-webkit-keyframes my{
    from{
        transform: rotateY(0)
    }
    to{
        transform: rotateY(360deg)
    }
}

博客介绍:http://www.zhangxinxu.com/wordpress/2012/09/css3-3d-transform-perspective-animate-transition/

1.h1
{
text-shadow: 5px 5px 5px #FF0000;
}

2.
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>transform-style的3D效果测试</title>
<style>
*{font-size: 14px;color: #fff; padding:0; margin:0;}
#container {
    position: relative;
    height: 300px;
    width: 300px;
    -webkit-perspective: 500;
    margin-top: 200px;
    margin-right: auto;
    margin-left: auto;
}
#parent {
    margin: 10px;
    width: 280px;
    height: 280px;
    background-color: #666;
    opacity: 0.8;
    -webkit-transform-style: preserve-3d;
    -webkit-animation: spin 5s infinite linear;
}
#parent > div {
    position: absolute;
    top: 40px;
    left: 40px;
    width: 280px;
    height: 200px;
    padding: 10px;
    -webkit-box-sizing: border-box;
}
#parent > :first-child {
    background-color: #000;
    -webkit-transform: translateZ(-100px) rotateY(45deg);
}
#parent > :last-child {
    background-color: #333;
    -webkit-transform: translateZ(50px) rotateX(20deg);
    -webkit-transform-origin: 50% top;
}
    /*执行Y轴旋转360度动画*/
@-webkit-keyframes spin {
    from {-webkit-transform: rotateY(0);}
    to {-webkit-transform: rotateY(360deg);}
}
</style>
</head>
  <body>
  <div id="container">
    <div id="parent">
      <div>源码爱好者提供编程源码、网站源码、网页素材、书籍教程、网站模板、网页特效代码等,做有质量的学习型源码下载站。</div>
    </div>
  </div>
</body>
</html>

1.折起来,transform rotateX(45deg);

2.-webkit-perspective 500;

3.动起来  -webkit-animation my 15s infinite linear

4.translateZ(100px)

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。