|
@@ -171,6 +171,11 @@
|
|
-webkit-transform: translate(-50%);
|
|
-webkit-transform: translate(-50%);
|
|
transform: translate(-50%);
|
|
transform: translate(-50%);
|
|
}
|
|
}
|
|
|
|
+ #lottery_button{
|
|
|
|
+ display: inline-block;
|
|
|
|
+ width: 100%;
|
|
|
|
+ text-align: center;
|
|
|
|
+ }
|
|
|
|
|
|
.index .button img {
|
|
.index .button img {
|
|
width: 3rem;
|
|
width: 3rem;
|
|
@@ -389,7 +394,7 @@
|
|
</div>
|
|
</div>
|
|
<div class="zz">
|
|
<div class="zz">
|
|
<img src="https://cdn-novel.iycdm.com/h5/activity-2019-05-30/point.png" />
|
|
<img src="https://cdn-novel.iycdm.com/h5/activity-2019-05-30/point.png" />
|
|
- <span id="left_count">剩余{{$count}} 次</span>
|
|
|
|
|
|
+ <span id="left_count">剩 余{{$count >=10 ? '9+':$count}}次</span>
|
|
</div>
|
|
</div>
|
|
<div class="button">
|
|
<div class="button">
|
|
<img src="https://cdn-novel.iycdm.com/h5/activity-2019-05-30/button.png" />
|
|
<img src="https://cdn-novel.iycdm.com/h5/activity-2019-05-30/button.png" />
|
|
@@ -588,7 +593,11 @@
|
|
//旋转完毕后弹窗
|
|
//旋转完毕后弹窗
|
|
console.log('over');
|
|
console.log('over');
|
|
count--;
|
|
count--;
|
|
- $('#left_count').html('剩余'+count+' 次');
|
|
|
|
|
|
+ count_str = count
|
|
|
|
+ if(count >=10){
|
|
|
|
+ count_str =count+'+'
|
|
|
|
+ }
|
|
|
|
+ $('#left_count').html('剩余'+count_str+'+次');
|
|
if(count<=0){
|
|
if(count<=0){
|
|
$('#lottery_button').html('充值后才可抽奖');
|
|
$('#lottery_button').html('充值后才可抽奖');
|
|
}
|
|
}
|