主题自带的预加载动画千篇一律,用这个主题的都是这个动画,感觉不是太好看,不符合我的审美 ,那就想办法修改一下吧。
我的主题自带的加载动画名字为go.php,打开这个文件把css样式文件改一下,然后div加上样式就ok。
CSS代码:
- html, body {
- height: 100%;
- display: flex;
- align-items: center;
- justify-content: center;
- background: #2D4654;
- }
- .loader {
- width: 130px;
- height: 170px;
- position: relative;
- }
- .loader::before, .loader::after {
- content: "";
- width: 0;
- height: 0;
- position: absolute;
- bottombottom: 30px;
- left: 15px;
- z-index: 1;
- border-left: 50px solid transparent;
- border-right: 50px solid transparent;
- border-bottom: 20px solid #1b2a33;
- -webkit-transform: scale(0);
- transform: scale(0);
- transition: all 0.2s ease;
- }
- .loader::after {
- border-right: 15px solid transparent;
- border-bottom: 20px solid #162229;
- }
- .loader .getting-there {
- width: 120%;
- text-align: center;
- position: absolute;
- bottombottom: 0;
- left: -7%;
- font-family: "Lato";
- font-size: 12px;
- letter-spacing: 2px;
- color: white;
- }
- .loader .binary {
- width: 100%;
- height: 140px;
- display: block;
- color: white;
- position: absolute;
- top: 0;
- left: 15px;
- z-index: 2;
- overflow: hidden;
- }
- .loader .binary::before, .loader .binary::after {
- font-family: "Lato";
- font-size: 24px;
- position: absolute;
- top: 0;
- left: 0;
- opacity: 0;
- }
- .loader .binary:nth-child(1)::before {
- content: "0";
- -webkit-animation: a 1.1s linear infinite;
- animation: a 1.1s linear infinite;
- }
- .loader .binary:nth-child(1)::after {
- content: "0";
- -webkit-animation: b 1.3s linear infinite;
- animation: b 1.3s linear infinite;
- }
- .loader .binary:nth-child(2)::before {
- content: "1";
- -webkit-animation: c 0.9s linear infinite;
- animation: c 0.9s linear infinite;
- }
- .loader .binary:nth-child(2)::after {
- content: "1";
- -webkit-animation: d 0.7s linear infinite;
- animation: d 0.7s linear infinite;
- }
- .loader.JS_on::before, .loader.JS_on::after {
- -webkit-transform: scale(1);
- transform: scale(1);
- }
- @-webkit-keyframes a {
- 0% {
- -webkit-transform: translate(30px, 0) rotate(30deg);
- transform: translate(30px, 0) rotate(30deg);
- opacity: 0;
- }
- 100% {
- -webkit-transform: translate(30px, 150px) rotate(-50deg);
- transform: translate(30px, 150px) rotate(-50deg);
- opacity: 1;
- }
- }
- @keyframes a {
- 0% {
- -webkit-transform: translate(30px, 0) rotate(30deg);
- transform: translate(30px, 0) rotate(30deg);
- opacity: 0;
- }
- 100% {
- -webkit-transform: translate(30px, 150px) rotate(-50deg);
- transform: translate(30px, 150px) rotate(-50deg);
- opacity: 1;
- }
- }
- @-webkit-keyframes b {
- 0% {
- -webkit-transform: translate(50px, 0) rotate(-40deg);
- transform: translate(50px, 0) rotate(-40deg);
- opacity: 0;
- }
- 100% {
- -webkit-transform: translate(40px, 150px) rotate(80deg);
- transform: translate(40px, 150px) rotate(80deg);
- opacity: 1;
- }
- }
- @keyframes b {
- 0% {
- -webkit-transform: translate(50px, 0) rotate(-40deg);
- transform: translate(50px, 0) rotate(-40deg);
- opacity: 0;
- }
- 100% {
- -webkit-transform: translate(40px, 150px) rotate(80deg);
- transform: translate(40px, 150px) rotate(80deg);
- opacity: 1;
- }
- }
- @-webkit-keyframes c {
- 0% {
- -webkit-transform: translate(70px, 0) rotate(10deg);
- transform: translate(70px, 0) rotate(10deg);
- opacity: 0;
- }
- 100% {
- -webkit-transform: translate(60px, 150px) rotate(70deg);
- transform: translate(60px, 150px) rotate(70deg);
- opacity: 1;
- }
- }
- @keyframes c {
- 0% {
- -webkit-transform: translate(70px, 0) rotate(10deg);
- transform: translate(70px, 0) rotate(10deg);
- opacity: 0;
- }
- 100% {
- -webkit-transform: translate(60px, 150px) rotate(70deg);
- transform: translate(60px, 150px) rotate(70deg);
- opacity: 1;
- }
- }
- @-webkit-keyframes d {
- 0% {
- -webkit-transform: translate(30px, 0) rotate(-50deg);
- transform: translate(30px, 0) rotate(-50deg);
- opacity: 0;
- }
- 100% {
- -webkit-transform: translate(45px, 150px) rotate(30deg);
- transform: translate(45px, 150px) rotate(30deg);
- opacity: 1;
- }
- }
- @keyframes d {
- 0% {
- -webkit-transform: translate(30px, 0) rotate(-50deg);
- transform: translate(30px, 0) rotate(-50deg);
- opacity: 0;
- }
- 100% {
- -webkit-transform: translate(45px, 150px) rotate(30deg);
- transform: translate(45px, 150px) rotate(30deg);
- opacity: 1;
- }
- }
HTML代码:
- <div class="loader JS_on">
- <span class="binary"></span>
- <span class="binary"></span>
- <span class="getting-there">LOADING ...</span>
- </div>
修改前:
修改后:
PS:截的图不是太好看,这两个都是动态的。。 还有,只有外链的情况下,才会有这个预加载动画。
完。
微信小程序
互联网开发,终身学习者,欢迎您的关注!
2019年2月26日 下午10:08
这个go.php能发一下嘛?您的网站里没看到您主题的下载页面,所以没有go.php
2019年2月26日 下午10:16
@影子鱼 目前我又换预加载动画了,不知道你要的是哪个呢?
2019年2月26日 下午10:31
@舍得 又换了一个?那可以的话,想两个都看看怎么样
2019年2月27日 上午10:43
@影子鱼 已发
2019年2月27日 下午12:55
@舍得 好的👌
2018年6月27日 下午3:14
非常不错的CSS代码
2018年6月16日 上午9:17
其实这个样式主要是看个人的喜欢啦,没必要标新立异啦!
2018年6月16日 上午9:20
@明月清风 是这样