yunshangxie/unpackage/dist/dev/mp-weixin/tuniao-ui/components/tn-line-progress/tn-line-progress.wxss

54 lines
1.6 KiB
Plaintext
Raw Normal View History

2024-04-20 14:58:10 +08:00
@charset "UTF-8";
/**
* 下方引入的为Tuniao UI的集成样式文件为scss预处理器其中包含了一些"tn-"开头的自定义变量
* 使用的时候请将下面的一行复制到您的uniapp项目根目录的uni.scss中即可
* Tuniao UI自定义的css类名和scss变量均以"tn-"开头,不会造成冲突,请放心使用
*/
.tn-line-progress.data-v-77f7b248 {
display: inline-flex;
align-items: center;
width: 100%;
height: 28rpx;
overflow: hidden;
border-radius: 100rpx;
background-color: #f0f0f0;
}
.tn-line-progress--active.data-v-77f7b248 {
display: flex;
flex-direction: row;
align-items: center;
justify-items: flex-end;
justify-content: space-around;
width: 0;
height: 100%;
font-size: 20rpx;
color: #FFFFFF;
background-color: #01BEFF;
transition: all 0.3s ease;
}
.tn-line-progress__striped.data-v-77f7b248 {
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-size: 80rpx 80rpx;
}
.tn-line-progress__striped--active.data-v-77f7b248 {
-webkit-animation: progress-striped-data-v-77f7b248 2s linear infinite;
animation: progress-striped-data-v-77f7b248 2s linear infinite;
}
@-webkit-keyframes progress-striped-data-v-77f7b248 {
0% {
background-position: 0 0;
}
100% {
background-position: 80rpx 0;
}
}
@keyframes progress-striped-data-v-77f7b248 {
0% {
background-position: 0 0;
}
100% {
background-position: 80rpx 0;
}
}