当前位置:   article > 正文

CSS3 三维立体文字及旋转特效_css立体字叠加

css立体字叠加
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no" />
  6. <style type=text/css>
  7. body{
  8. background-color:#666666;
  9. }
  10. .land{
  11. margin:0px;
  12. padding:0px;
  13. font-size:150px;
  14. font-family:"微软雅黑";
  15. width:200px;
  16. height:250px;
  17. background-color:#888888;
  18. transform-style:preserve-3d;
  19. transform:perspective(1000px) rotateX(60deg) rotateZ(30deg);
  20. }
  21. .centered{
  22. margin-left:auto;
  23. margin-right:auto;
  24. }
  25. .floor{
  26. position:absolute;
  27. top:25px;
  28. left:25px;
  29. width:150px;
  30. height:150px;
  31. padding:0px;
  32. transform-style:preserve-3d;
  33. color:#cccccc;
  34. }
  35. //堆叠10个层形成类似拉伸成立体的效果
  36. .floor0{
  37. transform:perspective(1000px) translateX(0
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小小林熬夜学编程/article/detail/96701
推荐阅读
相关标签
  

闽ICP备14008679号