白云岛资源网 Design By www.pvray.com
今天给大家分享一款纯css3实现的win8加载动画。在这款实例中动画效果完全由css3实现。一起看下效果图:
实现的代码。
html代码:
XML/HTML Code复制内容到剪贴板- <div class="wrapp">
- <div class="text">
- <h1>
- Windows 8</h1>
- </div>
- <div class="logo">
- <span class="top-left"></span><span class="bottom-right"></span>
- </div>
- </div>
css3代码:
CSS Code复制内容到剪贴板- body{
- margin: 0;
- padding: 0;
- background-color: #90da15;
- }
- .wrapp{
- position: absolute;
- top: 50%;
- left: 50%;
- width: 600px;
- height: 300px;
- margin: -150px 0 0 -300px;
- -webkit-perspective: 30px;
- -webkit-transform: translateX(0px);
- -webkit-animation: wrapp 400ms 800ms ease-in forwards;
- -moz-perspective: 30px;
- -moz-transform: translateX(0px);
- -moz-animation: wrapp 400ms 800ms ease-in forwards;
- -ms-perspective: 30px;
- -ms-transform: translateX(0px);
- -ms-animation: wrapp 400ms 800ms ease-in forwards;
- perspective: 30px;
- transform: translateX(0px);
- animation: wrapp 400ms 800ms ease-in forwards;
- }
- .text{
- position: absolute;
- top: 50%;
- left: 50%;
- width: 0px;
- height: 60px;
- margin: -30px 0 0 -160px;
- overflow: hidden;
- -webkit-transform: translateX(0px);
- -webkit-animation: text 400ms 800ms linear forwards;
- -moz-transform: translateX(0px);
- -moz-animation: text 400ms 800ms linear forwards;
- -ms-transform: translateX(0px);
- -ms-animation: text 400ms 800ms linear forwards;
- transform: translateX(0px);
- animation: text 400ms 800ms linear forwards;
- }
- h1{
- float: rightright;
- font-family: "Segoe UI", Frutiger, "Frutiger Linotype", "Dejavu Sans", "Helvetica Neue", Arial, sans-serif;
- font-weight: normal;
- color: #fff;
- padding: 0;
- margin: 0;
- width: 320px;
- height: 60px;
- font-size: 60px;
- line-height: 60px;
- }
- .logo{
- position: absolute;
- top: 50%;
- left: 50%;
- width: 90px;
- height: 90px;
- margin: -45px 0 0 -45px;
- background-color: #fff;
- -webkit-transform: translateX(0px) rotateY(10deg);
- -webkit-animation: logo 500ms 300ms ease-out forwards;
- -moz-transform: translateX(0px) rotateY(10deg);
- -moz-animation: logo 500ms 300ms ease-out forwards;
- -ms-transform: translateX(0px) rotateY(10deg);
- -ms-animation: logo 500ms 300ms ease-out forwards;
- transform: translateX(0px) rotateY(10deg);
- animation: logo 500ms 300ms ease-out forwards;
- }
- .logo .top-left{
- position: absolute;
- top: 0;
- left: 0;
- width: 44px;
- height: 44px;
- border-right: solid 2px #90da15;
- border-bottom: solid 2px #90da15;
- }
- .logo .bottombottom-rightright{
- position: absolute;
- bottombottom: 0;
- rightright: 0;
- width: 44px;
- height: 44px;
- border-left: solid 2px #90da15;
- border-top: solid 2px #90da15;
- }
- @-webkit-keyframes logo {
- from {
- -webkit-transform: translateX(0px) rotateY(10deg);
- }
- to {
- -webkit-transform: translateX(0px) rotateY(-10deg);
- }
- }
- @-webkit-keyframes text {
- from {
- width: 0px;
- -webkit-transform: translateX(0px);
- }
- 60%{
- width: 0px;
- }
- to {
- width: 320px;
- -webkit-transform: translateX(240px);
- }
- }
- @-webkit-keyframes wrapp {
- from {
- -webkit-transform: translateX(0px);
- }
- to {
- -webkit-transform: translateX(-200px);
- }
- }
- @-moz-keyframes logo {
- from {
- -moz-transform: translateX(0px) rotateY(10deg);
- }
- to {
- -moz-transform: translateX(0px) rotateY(-10deg);
- }
- }
- @-moz-keyframes text {
- from {
- width: 0px;
- -moz-transform: translateX(0px);
- }
- 60%{
- width: 0px;
- }
- to {
- width: 320px;
- -moz-transform: translateX(240px);
- }
- }
- @-moz-keyframes wrapp {
- from {
- -moz-transform: translateX(0px);
- }
- to {
- -moz-transform: translateX(-200px);
- }
- }
- @-ms-keyframes logo {
- from {
- -ms-transform: translateX(0px) rotateY(10deg);
- }
- to {
- -ms-transform: translateX(0px) rotateY(-10deg);
- }
- }
- @-ms-keyframes text {
- from {
- width: 0px;
- -ms-transform: translateX(0px);
- }
- 60%{
- width: 0px;
- }
- to {
- width: 320px;
- -ms-transform: translateX(240px);
- }
- }
- @-ms-keyframes wrapp {
- from {
- -ms-transform: translateX(0px);
- }
- to {
- -ms-transform: translateX(-200px);
- }
- }
- @keyframes logo {
- from {
- transform: translateX(0px) rotateY(10deg);
- }
- to {
- transform: translateX(0px) rotateY(-10deg);
- }
- }
- @keyframes text {
- from {
- width: 0px;
- transform: translateX(0px);
- }
- 60%{
- width: 0px;
- }
- to {
- width: 320px;
- transform: translateX(240px);
- }
- }
- @keyframes wrapp {
- from {
- transform: translateX(0px);
- }
- to {
- transform: translateX(-200px);
- }
- }
白云岛资源网 Design By www.pvray.com
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
白云岛资源网 Design By www.pvray.com
暂无评论...
RTX 5090要首发 性能要翻倍!三星展示GDDR7显存
三星在GTC上展示了专为下一代游戏GPU设计的GDDR7内存。
首次推出的GDDR7内存模块密度为16GB,每个模块容量为2GB。其速度预设为32 Gbps(PAM3),但也可以降至28 Gbps,以提高产量和初始阶段的整体性能和成本效益。
据三星表示,GDDR7内存的能效将提高20%,同时工作电压仅为1.1V,低于标准的1.2V。通过采用更新的封装材料和优化的电路设计,使得在高速运行时的发热量降低,GDDR7的热阻比GDDR6降低了70%。