影片直播app原始碼,css預載入旋轉動畫與流光字型

zhibo系統開發發表於2022-12-30

影片直播app原始碼,css預載入旋轉動畫與流光字型

一、預載入旋轉動畫

css

body {
background-color: #e9967a;
}
.concentric_round {
width: 200rpx;
height: 200rpx;
position: relative;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -100%);
}
.concentric_round::after,
.concentric_round::before {
content: '';
display: block;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background-color: #fff;
opacity: 0.4;
border-radius: 100%;
}
 
.concentric_round::before {
width: 50%;
height: 50%;
animation: beform_round 0.6s ease-in-out infinite alternate;
}
 
.concentric_round::after {
width: 100%;
height: 100%;
animation: after_round 0.6s ease-in-out infinite alternate;
}
/* 外圓 */
@-webkit-keyframes after_round {
0% {
transform: translate3d(-50%, -50%, 0) scale(1.3);
}
100% {
transform: translate3d(-50%, -50%, 0) scale(1);
}
}
@keyframes after_round {
0% {
transform: translate3d(-50%, -50%, 0) scale(1.3);
}
100% {
transform: translate3d(-50%, -50%, 0) scale(1);
}
}
/* 內圓 */
@-webkit-keyframes beform_round {
0% {
transform: translate3d(-50%, -50%, 0) scale(0.7);
}
100% {
transform: translate3d(-50%, -50%, 0) scale(1);
}
}
@keyframes beform_round {
0% {
transform: translate3d(-50%, -50%, 0) scale(0.7);
}
100% {
transform: translate3d(-50%, -50%, 0) scale(1);
}
}


二、流光字型動畫

css 


preload {
width: 100%;
font-weight: bold;
font-family: 'Arial', 'Microsoft YaHei', '黑體', '宋體', sans-serif;
font-size: 2.5rem;
text-align: center;
background-image: -webkit-linear-gradient(left, black, transparent 25%, black 50%, transparent 75%, black);
-webkit-text-fill-color: transparent;
-webkit-background-clip: text;
-webkit-background-size: 200% 100%;
-webkit-animation: masked-animation 2s infinite linear;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -100%);
}
@-webkit-keyframes masked-animation {
0% {
background-position: 0 0;
}
100% {
background-position: -100% 0;
}
}


 以上就是 影片直播app原始碼,css預載入旋轉動畫與流光字型,更多內容歡迎關注之後的文章


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69978258/viewspace-2930267/,如需轉載,請註明出處,否則將追究法律責任。

相關文章