|
|
@@ -130,7 +130,7 @@
|
|
|
width: 70px;
|
|
|
height: 70px;
|
|
|
}
|
|
|
- .main .container .footer .footer-section .img img{
|
|
|
+ .main .container .footer .footer-section .img img.imgUas{
|
|
|
max-width: 70px;
|
|
|
max-height: 70px;
|
|
|
text-align: center;
|
|
|
@@ -196,7 +196,7 @@
|
|
|
from {-webkit-transform:rotate(0deg);}
|
|
|
to {-webkit-transform:rotate(360deg);}
|
|
|
}
|
|
|
- .main .container .footer .loading img{
|
|
|
+ .main .container .footer .loading>img.loadingImg{
|
|
|
width: 30px;
|
|
|
height: 30px;
|
|
|
-webkit-mask-size: 30px 30px;
|
|
|
@@ -275,7 +275,7 @@
|
|
|
<div class="infoMessage"><span>写留言</span><img src="/jpress/static/jpress/admin/image/pen.png" alt=""/></div>
|
|
|
<div class="writeMessage">
|
|
|
<textarea name="text" id="" cols="30" rows="10"></textarea>
|
|
|
- <div><button>取消</button><button type="submit">提交</button></div>
|
|
|
+ <div><button class="cancel">取消</button><button type="submit">提交</button></div>
|
|
|
</div>
|
|
|
</div>
|
|
|
</form>
|
|
|
@@ -312,7 +312,7 @@
|
|
|
</#if>
|
|
|
</@jp.commentPage>
|
|
|
</div>
|
|
|
- <div class="loading"><img src="/jpress/static/jpress/admin/image/loading.png" alt=""></div>
|
|
|
+ <div class="loading"><img src="/jpress/static/jpress/admin/image/loading.png" alt="" class="loadingImg"></div>
|
|
|
<div class="pull">下拉加载更多</div>
|
|
|
<!--<div class="pull"><a>没有更多数据了</a></div>-->
|
|
|
</div>
|
|
|
@@ -353,6 +353,11 @@
|
|
|
$('.footer-header>div.infoMessage').click(function () {
|
|
|
$(this).next('.writeMessage').toggle()
|
|
|
})
|
|
|
+ //点击取消按钮
|
|
|
+ $('.cancel').click(function () {
|
|
|
+ $(this).parent().parent('.writeMessage').css('display','none');
|
|
|
+ console.log($(this).parent().parent('.writeMessage'))
|
|
|
+ })
|
|
|
// 上拉加载更多
|
|
|
var aa = 2,
|
|
|
timers = null;
|