| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <script>
- import { getStatusBar } from '@/utils/index';
- export default {
- onLaunch: function() {
- console.log('App Launch')
- getStatusBar();
- },
- onShow: function() {
- console.log('App Show')
- },
- onHide: function() {
- console.log('App Hide')
- }
- }
- </script>
- <style>
- .skeleton-line{
- background: linear-gradient(90deg, #f1f2f4 25%, #e6e6e6 37%, #f1f2f4 50%);
- background-size: 400% 100%;
- border-radius: 3px;
- height: 30upx;
- width: 100%;
- margin-top: 20upx;
- }
- .skeleton-line.short{
- width: 60%;
- }
- .skeleton-line.max{
- height: 80upx;
- }
- .animate {
- animation: skeleton 1.8s ease infinite
- }
- @keyframes skeleton {
- 0% {
- background-position: 100% 50%
- }
- 100% {
- background-position: 0 50%
- }
- }
- </style>
|