-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7c2ff57
commit 10a4489
Showing
1 changed file
with
60 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
/* 页脚footer */ | ||
/* 渐变色滚动动画 */ | ||
@-webkit-keyframes Gradient { | ||
0% { | ||
background-position: 0 50%; | ||
} | ||
|
||
50% { | ||
background-position: 100% 50%; | ||
} | ||
|
||
100% { | ||
background-position: 0 50%; | ||
} | ||
} | ||
|
||
@-moz-keyframes Gradient { | ||
0% { | ||
background-position: 0 50%; | ||
} | ||
|
||
50% { | ||
background-position: 100% 50%; | ||
} | ||
|
||
100% { | ||
background-position: 0 50%; | ||
} | ||
} | ||
|
||
@keyframes Gradient { | ||
0% { | ||
background-position: 0 50%; | ||
} | ||
|
||
50% { | ||
background-position: 100% 50%; | ||
} | ||
|
||
100% { | ||
background-position: 0 50%; | ||
} | ||
} | ||
#footer { | ||
background: linear-gradient(-45deg, #ee7752, #ce3e75, #23a6d5, #23d5ab); | ||
background-size: 400% 400%; | ||
-webkit-animation: Gradient 10s ease infinite; | ||
-moz-animation: Gradient 10s ease infinite; | ||
animation: Gradient 10s ease infinite; | ||
-o-user-select: none; | ||
-ms-user-select: none; | ||
-webkit-user-select: none; | ||
-moz-user-select: none; | ||
user-select: none; | ||
border-top-left-radius: 10px; | ||
border-top-right-radius: 10px; | ||
} | ||
#footer:before { | ||
background-color: rgba(0, 0, 0, 0); | ||
} |