Commit 2f22d13f authored by zhijie.xue's avatar zhijie.xue

删除无用静态资源

parent c7546171
......@@ -23,7 +23,7 @@
// }
function getProbabilityByPercent(quantity, coinQuantity) {
if (quantity === 0) return '0%';
if (quantity === 0) return '0';
const quotient = quantity / coinQuantity;
if (quotient < 0.01) {
......
......@@ -5,7 +5,7 @@ function getCommonDivisor(firstNum, secondNum) {
}
function getProbabilityByPercent(quantity, coinQuantity) {
if (quantity === 0) return '0%';
if (quantity === 0) return '0';
var quotient = quantity / coinQuantity;
if (quotient < 0.01) {
......
......@@ -106,7 +106,7 @@
height: 100%;
top: 0;
left: 0;
background: url('http://activitystatic.xyqb.com/light-1@2x.png') 0% 0%/contain no-repeat;
background: url('http://activitystatic.q-gp.com/light-1@2x.png') 0% 0%/contain no-repeat;
.star-image {
&:nth-child(1) {
position: absolute;
......@@ -289,7 +289,7 @@
width: 73rpx;
height: 43rpx;
position: absolute;
background: url('http://activitystatic.xyqb.com/btn-shadow@2x.png') center center/contain no-repeat;
background: url('http://activitystatic.q-gp.com/btn-shadow@2x.png') center center/contain no-repeat;
top: 3rpx;
left: 4rpx;
};
......
......@@ -64,7 +64,7 @@
// transform: scale(0.5);
// top: calc(100% - 1px);
// left: 100%;
background: url('https://activitystatic.xyqb.com/sign@2x.png') 0 0/contain no-repeat;
background: url('https://activitystatic.q-gp.com/sign@2x.png') 0 0/contain no-repeat;
// background: -webkit-linear-gradient(45deg,rgba(255,255,255,0),yellow,rgba(255,255,255,0));
/*此处为下一步的添加动画*/
// -webkit-animation: shining 3s ease-in-out infinite;
......
......@@ -315,7 +315,7 @@
bottom: 415rpx;
width:30%;
right: 30rpx;
color: @whitecolor;
color: @white;
will-change: transform;
.info {
line-height: 40rpx;
......@@ -324,19 +324,21 @@
.progress {
width: 180rpx;
height: 20rpx;
background-color: @whiteback;
background-color: @white;
margin-top: 10rpx;
color: @greycolor;
color: @text-color-gray;
position: relative;
border-radius: @border-radius-sm;
.text {
position: absolute;
top:0;
left:0;
width:100%;
height:100%;
width: 100%;
height: 100%;
z-index: 2;
text-align: center;
line-height:20rpx;
line-height: 20rpx;
background-color: transparent;
font-size: 18rpx;
}
......
// 调色板
@black: #000;
@white: #fff;
@gray-1: #aaa;
@gray-2: #999;
@gray-3: #666;
@gray-4: #333;
@gray-5: #f1f1f1;
@orange: #ff5d15;
@red: #FF1212;
// 主颜色
@maincolor: #ff5d15;
@redcolor: #FF1212;
@maincolor: @orange;
@redcolor: @red;
//字体颜色
@fontcolor:#333;
@greycolor: #666;
@lightgrey: #999;
@whitecolor: #fff;
@darkgrey: #aaa;
@fontcolor: @gray-4;
@greycolor: @gray-3;
@lightgrey: @gray-2;
@whitecolor: @white;
@darkgrey: @gray-1;
//背景颜色
@whiteback:#fff;
@greyback: #f1f1f1;
@whiteback:@white;
@greyback: @gray-5;
//字体大小
@font-normal: 24rpx;
@font-small:20rpx;
@font-common:22rpx;
@font-middle:28rpx;
@font-large:30rpx;
@font-small: 20rpx;
@font-common: 22rpx;
@font-middle: 28rpx;
@font-large: 30rpx;
// 组件颜色
@text-color: @gray-4;
@text-color-gray: @gray-3;
@text-color-lightgray: @gray-2;
// 边框
@border-width-base: 1rpx;
@border-radius-sm: 4rpx;
@border-radius-md: 10rpx;
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment