css过渡+3D效果的简单实现

时间:2021-05-08

css过渡+3D效果的简单实现

XML/HTML Code复制内容到剪贴板
  • <!DOCTYPEhtml>
  • <html>
  • <head>
  • <title>guodu</title>
  • <metacharset="utf-8">
  • <styletype="text/css">
  • #wp{
  • border:1pxsolidred;
  • width:500px;
  • height:500px;
  • background-color:pink;
  • color:lime;
  • transition-property:backgroundcolor;
  • transition-duration:5s;
  • transition-timing-function:cubic-bezier(000.20.2);
  • transition-delay:1s;
  • transform:perspective(600px);
  • }
  • #wp:hover{
  • background:red;
  • color:white;
  • width:800px;
  • transform-origin:(150px100px120px);
  • transform:skewY(80deg)rotate(45deg)translate(50%);
  • }
  • </style>
  • </head>
  • <body>
  • <divid="wp"><h1>南海是中国的,菲律宾也是中国的</h1></div>
  • </body>
  • </html>
  • 以上这篇css过渡+3D效果的简单实现就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。

    原文地址:http://www.cnblogs.com/yzybc/p/5666719.html

    声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

    相关文章