mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
增加图片懒加载
This commit is contained in:
parent
ac721670eb
commit
8ddd5883fe
@ -20,18 +20,17 @@
|
|||||||
</div>
|
</div>
|
||||||
{foreach $vo.articles as $k => $v}
|
{foreach $vo.articles as $k => $v}
|
||||||
{if $k < 1}
|
{if $k < 1}
|
||||||
<div data-tips-image='{$v.local_url}' class='news-articel-item' style='background-image:url("{$v.local_url}")'>
|
<div data-tips-image='{$v.local_url}' data-lazy-src="{$v.local_url}" class='news-articel-item'>
|
||||||
{if $v.title}<p>{$v.title}</p>{/if}
|
{if $v.title}<p>{$v.title}</p>{/if}
|
||||||
</div>
|
</div>
|
||||||
<div class="hr-line-dashed"></div>
|
<div class="hr-line-dashed"></div>
|
||||||
{else}
|
{else}
|
||||||
<div class='news-articel-item other'>
|
<div class='news-articel-item other'>
|
||||||
<span>{$v.title}</span>
|
<span>{$v.title}</span>
|
||||||
<div data-tips-image='{$v.local_url}' style='background-image:url("{$v.local_url}");'></div>
|
<div data-tips-image='{$v.local_url}' data-lazy-src="{$v.local_url}"></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="hr-line-dashed"></div>
|
<div class="hr-line-dashed"></div>
|
||||||
{/if}
|
{/if}{/foreach}
|
||||||
{/foreach}
|
|
||||||
</div>
|
</div>
|
||||||
{/foreach}
|
{/foreach}
|
||||||
</div>
|
</div>
|
||||||
@ -87,12 +86,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
#news-box .news-item .news-articel-item {
|
#news-box .news-item .news-articel-item {
|
||||||
width: 100%;
|
|
||||||
height: 150px;
|
height: 150px;
|
||||||
overflow: hidden;
|
|
||||||
position: relative;
|
|
||||||
background-size: 100%;
|
|
||||||
background-position: center center
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#news-box .news-item .news-articel-item p {
|
#news-box .news-item .news-articel-item p {
|
||||||
|
@ -131,7 +131,7 @@ $(function () {
|
|||||||
};
|
};
|
||||||
// 内容区域动态加载后初始化
|
// 内容区域动态加载后初始化
|
||||||
this.reInit = function ($dom) {
|
this.reInit = function ($dom) {
|
||||||
$.vali.listen(this), $dom = $dom || $(this.selecter);
|
$(window).trigger('scroll'), $.vali.listen(this), $dom = $dom || $(this.selecter);
|
||||||
$dom.find('[required]').map(function ($parent) {
|
$dom.find('[required]').map(function ($parent) {
|
||||||
if (($parent = $(this).parent()) && $parent.is('label')) {
|
if (($parent = $(this).parent()) && $parent.is('label')) {
|
||||||
$parent.addClass('label-required-prev');
|
$parent.addClass('label-required-prev');
|
||||||
@ -808,6 +808,19 @@ $(function () {
|
|||||||
})(code)
|
})(code)
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/*! 图片懒加载转换处理 */
|
||||||
|
$(window).on('scroll resize load', function () {
|
||||||
|
var notFoundCount = 0, maxNotFound = 2, screenHeight = $(window).height();
|
||||||
|
$('[data-lazy-src]:not([data-lazy-loaded])').each(function (src, pos) {
|
||||||
|
if (this.getAttribute('data-lazy-loaded')) return true;
|
||||||
|
src = this.dataset.lazySrc, pos = this.getBoundingClientRect();
|
||||||
|
if (pos.bottom <= 0 || !src) return true;
|
||||||
|
if (pos.top >= screenHeight) return (notFoundCount++) < maxNotFound;
|
||||||
|
this.nodeName === 'IMG' ? this.src = src : this.style.backgroundImage = 'url(' + src + ')';
|
||||||
|
this.setAttribute('data-lazy-loaded', true);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
/*! 图片加载异常处理 */
|
/*! 图片加载异常处理 */
|
||||||
document.addEventListener('error', function (e, elem) {
|
document.addEventListener('error', function (e, elem) {
|
||||||
elem = e.target;
|
elem = e.target;
|
||||||
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -215,6 +215,404 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.input-right-icon {
|
||||||
|
top: 0;
|
||||||
|
right: 0;
|
||||||
|
width: 38px;
|
||||||
|
height: 38px;
|
||||||
|
display: inline-block;
|
||||||
|
position: absolute;
|
||||||
|
text-align: center;
|
||||||
|
line-height: 38px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 加载进度 */
|
||||||
|
.pace-inactive {
|
||||||
|
display: none
|
||||||
|
}
|
||||||
|
|
||||||
|
.pace-progress {
|
||||||
|
top: 0;
|
||||||
|
right: 100%;
|
||||||
|
width: 100%;
|
||||||
|
height: 2px;
|
||||||
|
z-index: 2000;
|
||||||
|
position: fixed;
|
||||||
|
background: #22df80
|
||||||
|
}
|
||||||
|
|
||||||
|
.uploadimage {
|
||||||
|
width: 77px;
|
||||||
|
height: 77px;
|
||||||
|
cursor: pointer;
|
||||||
|
position: relative;
|
||||||
|
display: inline-block;
|
||||||
|
border: 1px dashed #e2e2e2;
|
||||||
|
background: url('../img/upimg.png') no-repeat center center;
|
||||||
|
background-size: cover;
|
||||||
|
|
||||||
|
span.layui-icon {
|
||||||
|
right: 0;
|
||||||
|
color: #fff;
|
||||||
|
width: 20px;
|
||||||
|
height: 20px;
|
||||||
|
display: none;
|
||||||
|
position: absolute;
|
||||||
|
text-align: center;
|
||||||
|
line-height: 22px;
|
||||||
|
background: rgba(0, 0, 0, .5)
|
||||||
|
}
|
||||||
|
|
||||||
|
&:hover span.layui-icon {
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.uploadimagemtl {
|
||||||
|
margin-right: 8px;
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: #fff;
|
||||||
|
width: 20px;
|
||||||
|
height: 20px;
|
||||||
|
float: right;
|
||||||
|
display: none;
|
||||||
|
text-align: center;
|
||||||
|
line-height: 22px;
|
||||||
|
background: rgba(0, 0, 0, .5)
|
||||||
|
}
|
||||||
|
|
||||||
|
&:hover a {
|
||||||
|
cursor: pointer;
|
||||||
|
display: inline-block;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
color: #fff;
|
||||||
|
text-decoration: none
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
[data-tips-image] {
|
||||||
|
cursor: zoom-in !important
|
||||||
|
}
|
||||||
|
|
||||||
|
[data-lazy-src] {
|
||||||
|
overflow: hidden;
|
||||||
|
position: relative;
|
||||||
|
background-size: 100%;
|
||||||
|
background-position: center center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.portal-block-container {
|
||||||
|
font-size: 14px;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
letter-spacing: 1px;
|
||||||
|
|
||||||
|
.portal-block {
|
||||||
|
&-icon {
|
||||||
|
top: 45%;
|
||||||
|
right: 8%;
|
||||||
|
font-size: 65px;
|
||||||
|
position: absolute;
|
||||||
|
color: rgba(255, 255, 255, 0.4);
|
||||||
|
}
|
||||||
|
|
||||||
|
&-item {
|
||||||
|
color: #fff;
|
||||||
|
padding: 15px 25px;
|
||||||
|
position: relative;
|
||||||
|
line-height: 3em;
|
||||||
|
border-radius: 5px;
|
||||||
|
box-shadow: 0 2px 3px 0 rgba(0, 0, 0, .2);
|
||||||
|
|
||||||
|
> div:nth-child(2) {
|
||||||
|
font-size: 46px;
|
||||||
|
line-height: 46px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 通用分页 */
|
||||||
|
.pagination-container {
|
||||||
|
margin-top: 20px;
|
||||||
|
line-height: 30px;
|
||||||
|
padding-top: 5px;
|
||||||
|
padding-bottom: 5px;
|
||||||
|
|
||||||
|
span {
|
||||||
|
color: #666;
|
||||||
|
font-size: 9pt
|
||||||
|
}
|
||||||
|
|
||||||
|
ul {
|
||||||
|
float: right;
|
||||||
|
height: 30px;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
display: inline-block;
|
||||||
|
|
||||||
|
li {
|
||||||
|
z-index: 1;
|
||||||
|
height: 30px;
|
||||||
|
line-height: 30px;
|
||||||
|
display: inline-block;
|
||||||
|
|
||||||
|
a, span {
|
||||||
|
color: #333;
|
||||||
|
width: 30px;
|
||||||
|
height: 30px;
|
||||||
|
border: 1px solid @borderColor;
|
||||||
|
overflow: hidden;
|
||||||
|
font-size: 12px;
|
||||||
|
text-align: center;
|
||||||
|
line-height: 30px;
|
||||||
|
margin-right: 3px;
|
||||||
|
border-radius: 50%;
|
||||||
|
display: inline-block;
|
||||||
|
box-sizing: border-box;
|
||||||
|
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .2) inset;
|
||||||
|
}
|
||||||
|
|
||||||
|
span {
|
||||||
|
cursor: default;
|
||||||
|
background: #DCDCDC;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:hover {
|
||||||
|
border-color: #009688;
|
||||||
|
box-shadow: 0 3px 6px 0 rgba(0, 0, 0, .4) inset;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.active {
|
||||||
|
z-index: 2;
|
||||||
|
|
||||||
|
span {
|
||||||
|
color: #fff;
|
||||||
|
border-color: #009688;
|
||||||
|
background: #009688 !important
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&.disabled {
|
||||||
|
span {
|
||||||
|
font-size: 16px;
|
||||||
|
font-weight: 700;
|
||||||
|
line-height: 22px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&:last-child, &:first-child {
|
||||||
|
a, span {
|
||||||
|
font-size: 16px;
|
||||||
|
font-weight: 700;
|
||||||
|
line-height: 28px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 手机盒子及微信菜单 */
|
||||||
|
.mobile-preview {
|
||||||
|
width: 317px;
|
||||||
|
height: 580px;
|
||||||
|
position: relative;
|
||||||
|
background: url(../img/wechat/mobile_head.png) no-repeat 0 0;
|
||||||
|
box-shadow: @minShadow;
|
||||||
|
border-radius: @borderRadius;
|
||||||
|
|
||||||
|
.mobile-header {
|
||||||
|
color: #fff;
|
||||||
|
width: auto;
|
||||||
|
margin: 0 30px;
|
||||||
|
overflow: hidden;
|
||||||
|
font-size: 15px;
|
||||||
|
padding-top: 30px;
|
||||||
|
text-align: center;
|
||||||
|
white-space: nowrap;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
word-wrap: normal;
|
||||||
|
user-select: none;
|
||||||
|
pointer-events: none;
|
||||||
|
-moz-user-select: none;
|
||||||
|
-webkit-user-select: none;
|
||||||
|
-webkit-pointer-events: none
|
||||||
|
}
|
||||||
|
|
||||||
|
.mobile-body {
|
||||||
|
top: 60px;
|
||||||
|
left: 0;
|
||||||
|
right: 0;
|
||||||
|
bottom: 0;
|
||||||
|
border: 1px solid #ccc;
|
||||||
|
position: absolute;
|
||||||
|
background: #f5f5f5;
|
||||||
|
border-radius: 0 0 5px 5px;
|
||||||
|
|
||||||
|
iframe {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.mobile-footer {
|
||||||
|
left: 0;
|
||||||
|
right: 0;
|
||||||
|
bottom: 0;
|
||||||
|
margin: 0;
|
||||||
|
border: 1px solid #ccc;
|
||||||
|
position: absolute;
|
||||||
|
padding-left: 43px;
|
||||||
|
background: url(../img/wechat/mobile_foot.png) no-repeat 0 0;
|
||||||
|
list-style-type: none;
|
||||||
|
border-radius: 0 0 5px 5px;
|
||||||
|
|
||||||
|
li {
|
||||||
|
float: left;
|
||||||
|
width: 33.33%;
|
||||||
|
position: relative;
|
||||||
|
text-align: center;
|
||||||
|
line-height: 50px;
|
||||||
|
|
||||||
|
a {
|
||||||
|
width: auto;
|
||||||
|
color: #616161;
|
||||||
|
border: 1px solid hsla(0, 0%, 100%, 0);
|
||||||
|
display: block;
|
||||||
|
overflow: hidden;
|
||||||
|
word-wrap: normal;
|
||||||
|
margin-top: -1px;
|
||||||
|
border-left: 1px solid #e7e7eb;
|
||||||
|
white-space: nowrap;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
margin-bottom: -1px;
|
||||||
|
text-decoration: none;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
background: rgba(0, 0, 0, .02)
|
||||||
|
}
|
||||||
|
|
||||||
|
&.active {
|
||||||
|
border: 1px solid #44b549 !important;
|
||||||
|
box-shadow: 0 0 1px #44b549
|
||||||
|
}
|
||||||
|
|
||||||
|
span:before {
|
||||||
|
width: 1px;
|
||||||
|
height: 1px;
|
||||||
|
content: '';
|
||||||
|
display: inline-block
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
> .close {
|
||||||
|
top: 1px;
|
||||||
|
right: 1px;
|
||||||
|
width: 18px;
|
||||||
|
height: 18px;
|
||||||
|
display: none;
|
||||||
|
cursor: pointer;
|
||||||
|
position: absolute;
|
||||||
|
text-align: center;
|
||||||
|
line-height: 18px
|
||||||
|
}
|
||||||
|
|
||||||
|
&:hover > .close {
|
||||||
|
display: inline-block;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
color: #fff !important;
|
||||||
|
background: #999 !important
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon {
|
||||||
|
&-add, &-sub {
|
||||||
|
display: inline-block;
|
||||||
|
vertical-align: middle
|
||||||
|
}
|
||||||
|
|
||||||
|
&-add {
|
||||||
|
width: 14px;
|
||||||
|
height: 14px;
|
||||||
|
border-bottom: none !important;
|
||||||
|
background: url(../img/wechat/index.png) 0 0 no-repeat
|
||||||
|
}
|
||||||
|
|
||||||
|
&-sub {
|
||||||
|
width: 7px;
|
||||||
|
height: 7px;
|
||||||
|
margin-right: 2px;
|
||||||
|
background: url(../img/wechat/index.png) 0 -3pc no-repeat
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.sub-menu {
|
||||||
|
width: 100%;
|
||||||
|
bottom: 60px;
|
||||||
|
margin: -1px;
|
||||||
|
display: block;
|
||||||
|
position: absolute;
|
||||||
|
border: 1px solid #d0d0d0;
|
||||||
|
background-color: #fafafa;
|
||||||
|
|
||||||
|
ul li {
|
||||||
|
float: none;
|
||||||
|
width: 100%;
|
||||||
|
padding: 0;
|
||||||
|
z-index: 11;
|
||||||
|
display: block;
|
||||||
|
|
||||||
|
a {
|
||||||
|
padding: 0 5px;
|
||||||
|
border: 1px solid hsla(0, 0%, 100%, 0);
|
||||||
|
|
||||||
|
&.bottom-border {
|
||||||
|
margin: -1px -1px 0;
|
||||||
|
border-bottom: 1px solid #e7e7eb
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&:last-child a.bottom-border {
|
||||||
|
border-bottom-color: #fff
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.arrow {
|
||||||
|
left: 50%;
|
||||||
|
position: absolute;
|
||||||
|
margin-left: -6px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.arrow_in, .arrow_out {
|
||||||
|
width: 0;
|
||||||
|
height: 0;
|
||||||
|
z-index: 10;
|
||||||
|
border: 6px dashed transparent;
|
||||||
|
display: inline-block;
|
||||||
|
border-top-style: solid;
|
||||||
|
border-bottom-width: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.arrow_in {
|
||||||
|
z-index: 3;
|
||||||
|
bottom: -5px;
|
||||||
|
border-top-color: #fafafa
|
||||||
|
}
|
||||||
|
|
||||||
|
.arrow_out {
|
||||||
|
z-index: 2;
|
||||||
|
bottom: -6px;
|
||||||
|
border-top-color: #d0d0d0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.border {
|
.border {
|
||||||
&-0 {
|
&-0 {
|
||||||
border: 0 !important
|
border: 0 !important
|
||||||
@ -844,394 +1242,4 @@
|
|||||||
margin-bottom: 40px !important
|
margin-bottom: 40px !important
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
.input-right-icon {
|
|
||||||
top: 0;
|
|
||||||
right: 0;
|
|
||||||
width: 38px;
|
|
||||||
height: 38px;
|
|
||||||
display: inline-block;
|
|
||||||
position: absolute;
|
|
||||||
text-align: center;
|
|
||||||
line-height: 38px;
|
|
||||||
}
|
|
||||||
|
|
||||||
/** 加载进度 */
|
|
||||||
.pace-inactive {
|
|
||||||
display: none
|
|
||||||
}
|
|
||||||
|
|
||||||
.pace-progress {
|
|
||||||
top: 0;
|
|
||||||
right: 100%;
|
|
||||||
width: 100%;
|
|
||||||
height: 2px;
|
|
||||||
z-index: 2000;
|
|
||||||
position: fixed;
|
|
||||||
background: #22df80
|
|
||||||
}
|
|
||||||
|
|
||||||
.uploadimage {
|
|
||||||
width: 77px;
|
|
||||||
height: 77px;
|
|
||||||
cursor: pointer;
|
|
||||||
position: relative;
|
|
||||||
display: inline-block;
|
|
||||||
border: 1px dashed #e2e2e2;
|
|
||||||
background: url('../img/upimg.png') no-repeat center center;
|
|
||||||
background-size: cover;
|
|
||||||
|
|
||||||
span.layui-icon {
|
|
||||||
right: 0;
|
|
||||||
color: #fff;
|
|
||||||
width: 20px;
|
|
||||||
height: 20px;
|
|
||||||
display: none;
|
|
||||||
position: absolute;
|
|
||||||
text-align: center;
|
|
||||||
line-height: 22px;
|
|
||||||
background: rgba(0, 0, 0, .5)
|
|
||||||
}
|
|
||||||
|
|
||||||
&:hover span.layui-icon {
|
|
||||||
display: inline-block;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.uploadimagemtl {
|
|
||||||
margin-right: 8px;
|
|
||||||
|
|
||||||
a {
|
|
||||||
color: #fff;
|
|
||||||
width: 20px;
|
|
||||||
height: 20px;
|
|
||||||
float: right;
|
|
||||||
display: none;
|
|
||||||
text-align: center;
|
|
||||||
line-height: 22px;
|
|
||||||
background: rgba(0, 0, 0, .5)
|
|
||||||
}
|
|
||||||
|
|
||||||
&:hover a {
|
|
||||||
cursor: pointer;
|
|
||||||
display: inline-block;
|
|
||||||
|
|
||||||
&:hover {
|
|
||||||
color: #fff;
|
|
||||||
text-decoration: none
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
[data-tips-image] {
|
|
||||||
cursor: zoom-in !important
|
|
||||||
}
|
|
||||||
|
|
||||||
.portal-block-container {
|
|
||||||
font-size: 14px;
|
|
||||||
margin-bottom: 10px;
|
|
||||||
letter-spacing: 1px;
|
|
||||||
|
|
||||||
.portal-block {
|
|
||||||
&-icon {
|
|
||||||
top: 45%;
|
|
||||||
right: 8%;
|
|
||||||
font-size: 65px;
|
|
||||||
position: absolute;
|
|
||||||
color: rgba(255, 255, 255, 0.4);
|
|
||||||
}
|
|
||||||
|
|
||||||
&-item {
|
|
||||||
color: #fff;
|
|
||||||
padding: 15px 25px;
|
|
||||||
position: relative;
|
|
||||||
line-height: 3em;
|
|
||||||
border-radius: 5px;
|
|
||||||
box-shadow: 0 2px 3px 0 rgba(0, 0, 0, .2);
|
|
||||||
|
|
||||||
> div:nth-child(2) {
|
|
||||||
font-size: 46px;
|
|
||||||
line-height: 46px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/* 通用分页 */
|
|
||||||
.pagination-container {
|
|
||||||
margin-top: 20px;
|
|
||||||
line-height: 30px;
|
|
||||||
padding-top: 5px;
|
|
||||||
padding-bottom: 5px;
|
|
||||||
|
|
||||||
span {
|
|
||||||
color: #666;
|
|
||||||
font-size: 9pt
|
|
||||||
}
|
|
||||||
|
|
||||||
ul {
|
|
||||||
float: right;
|
|
||||||
height: 30px;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
display: inline-block;
|
|
||||||
|
|
||||||
li {
|
|
||||||
z-index: 1;
|
|
||||||
height: 30px;
|
|
||||||
line-height: 30px;
|
|
||||||
display: inline-block;
|
|
||||||
|
|
||||||
a, span {
|
|
||||||
color: #333;
|
|
||||||
width: 30px;
|
|
||||||
height: 30px;
|
|
||||||
border: 1px solid @borderColor;
|
|
||||||
overflow: hidden;
|
|
||||||
font-size: 12px;
|
|
||||||
text-align: center;
|
|
||||||
line-height: 30px;
|
|
||||||
margin-right: 3px;
|
|
||||||
border-radius: 50%;
|
|
||||||
display: inline-block;
|
|
||||||
box-sizing: border-box;
|
|
||||||
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .2) inset;
|
|
||||||
}
|
|
||||||
|
|
||||||
span {
|
|
||||||
cursor: default;
|
|
||||||
background: #DCDCDC;
|
|
||||||
}
|
|
||||||
|
|
||||||
a:hover {
|
|
||||||
border-color: #009688;
|
|
||||||
box-shadow: 0 3px 6px 0 rgba(0, 0, 0, .4) inset;
|
|
||||||
}
|
|
||||||
|
|
||||||
&.active {
|
|
||||||
z-index: 2;
|
|
||||||
|
|
||||||
span {
|
|
||||||
color: #fff;
|
|
||||||
border-color: #009688;
|
|
||||||
background: #009688 !important
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
&.disabled {
|
|
||||||
span {
|
|
||||||
font-size: 16px;
|
|
||||||
font-weight: 700;
|
|
||||||
line-height: 22px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
&:last-child, &:first-child {
|
|
||||||
a, span {
|
|
||||||
font-size: 16px;
|
|
||||||
font-weight: 700;
|
|
||||||
line-height: 28px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/** 手机盒子及微信菜单 */
|
|
||||||
.mobile-preview {
|
|
||||||
width: 317px;
|
|
||||||
height: 580px;
|
|
||||||
position: relative;
|
|
||||||
background: url(../img/wechat/mobile_head.png) no-repeat 0 0;
|
|
||||||
box-shadow: @minShadow;
|
|
||||||
border-radius: @borderRadius;
|
|
||||||
|
|
||||||
.mobile-header {
|
|
||||||
color: #fff;
|
|
||||||
width: auto;
|
|
||||||
margin: 0 30px;
|
|
||||||
overflow: hidden;
|
|
||||||
font-size: 15px;
|
|
||||||
padding-top: 30px;
|
|
||||||
text-align: center;
|
|
||||||
white-space: nowrap;
|
|
||||||
text-overflow: ellipsis;
|
|
||||||
word-wrap: normal;
|
|
||||||
user-select: none;
|
|
||||||
pointer-events: none;
|
|
||||||
-moz-user-select: none;
|
|
||||||
-webkit-user-select: none;
|
|
||||||
-webkit-pointer-events: none
|
|
||||||
}
|
|
||||||
|
|
||||||
.mobile-body {
|
|
||||||
top: 60px;
|
|
||||||
left: 0;
|
|
||||||
right: 0;
|
|
||||||
bottom: 0;
|
|
||||||
border: 1px solid #ccc;
|
|
||||||
position: absolute;
|
|
||||||
background: #f5f5f5;
|
|
||||||
border-radius: 0 0 5px 5px;
|
|
||||||
|
|
||||||
iframe {
|
|
||||||
width: 100%;
|
|
||||||
height: 100%
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.mobile-footer {
|
|
||||||
left: 0;
|
|
||||||
right: 0;
|
|
||||||
bottom: 0;
|
|
||||||
margin: 0;
|
|
||||||
border: 1px solid #ccc;
|
|
||||||
position: absolute;
|
|
||||||
padding-left: 43px;
|
|
||||||
background: url(../img/wechat/mobile_foot.png) no-repeat 0 0;
|
|
||||||
list-style-type: none;
|
|
||||||
border-radius: 0 0 5px 5px;
|
|
||||||
|
|
||||||
li {
|
|
||||||
float: left;
|
|
||||||
width: 33.33%;
|
|
||||||
position: relative;
|
|
||||||
text-align: center;
|
|
||||||
line-height: 50px;
|
|
||||||
|
|
||||||
a {
|
|
||||||
width: auto;
|
|
||||||
color: #616161;
|
|
||||||
border: 1px solid hsla(0, 0%, 100%, 0);
|
|
||||||
display: block;
|
|
||||||
overflow: hidden;
|
|
||||||
word-wrap: normal;
|
|
||||||
margin-top: -1px;
|
|
||||||
border-left: 1px solid #e7e7eb;
|
|
||||||
white-space: nowrap;
|
|
||||||
text-overflow: ellipsis;
|
|
||||||
margin-bottom: -1px;
|
|
||||||
text-decoration: none;
|
|
||||||
|
|
||||||
&:hover {
|
|
||||||
background: rgba(0, 0, 0, .02)
|
|
||||||
}
|
|
||||||
|
|
||||||
&.active {
|
|
||||||
border: 1px solid #44b549 !important;
|
|
||||||
box-shadow: 0 0 1px #44b549
|
|
||||||
}
|
|
||||||
|
|
||||||
span:before {
|
|
||||||
width: 1px;
|
|
||||||
height: 1px;
|
|
||||||
content: '';
|
|
||||||
display: inline-block
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
> .close {
|
|
||||||
top: 1px;
|
|
||||||
right: 1px;
|
|
||||||
width: 18px;
|
|
||||||
height: 18px;
|
|
||||||
display: none;
|
|
||||||
cursor: pointer;
|
|
||||||
position: absolute;
|
|
||||||
text-align: center;
|
|
||||||
line-height: 18px
|
|
||||||
}
|
|
||||||
|
|
||||||
&:hover > .close {
|
|
||||||
display: inline-block;
|
|
||||||
|
|
||||||
&:hover {
|
|
||||||
color: #fff !important;
|
|
||||||
background: #999 !important
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.icon {
|
|
||||||
&-add, &-sub {
|
|
||||||
display: inline-block;
|
|
||||||
vertical-align: middle
|
|
||||||
}
|
|
||||||
|
|
||||||
&-add {
|
|
||||||
width: 14px;
|
|
||||||
height: 14px;
|
|
||||||
border-bottom: none !important;
|
|
||||||
background: url(../img/wechat/index.png) 0 0 no-repeat
|
|
||||||
}
|
|
||||||
|
|
||||||
&-sub {
|
|
||||||
width: 7px;
|
|
||||||
height: 7px;
|
|
||||||
margin-right: 2px;
|
|
||||||
background: url(../img/wechat/index.png) 0 -3pc no-repeat
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.sub-menu {
|
|
||||||
width: 100%;
|
|
||||||
bottom: 60px;
|
|
||||||
margin: -1px;
|
|
||||||
display: block;
|
|
||||||
position: absolute;
|
|
||||||
border: 1px solid #d0d0d0;
|
|
||||||
background-color: #fafafa;
|
|
||||||
|
|
||||||
ul li {
|
|
||||||
float: none;
|
|
||||||
width: 100%;
|
|
||||||
padding: 0;
|
|
||||||
z-index: 11;
|
|
||||||
display: block;
|
|
||||||
|
|
||||||
a {
|
|
||||||
padding: 0 5px;
|
|
||||||
border: 1px solid hsla(0, 0%, 100%, 0);
|
|
||||||
|
|
||||||
&.bottom-border {
|
|
||||||
margin: -1px -1px 0;
|
|
||||||
border-bottom: 1px solid #e7e7eb
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
&:last-child a.bottom-border {
|
|
||||||
border-bottom-color: #fff
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.arrow {
|
|
||||||
left: 50%;
|
|
||||||
position: absolute;
|
|
||||||
margin-left: -6px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.arrow_in, .arrow_out {
|
|
||||||
width: 0;
|
|
||||||
height: 0;
|
|
||||||
z-index: 10;
|
|
||||||
border: 6px dashed transparent;
|
|
||||||
display: inline-block;
|
|
||||||
border-top-style: solid;
|
|
||||||
border-bottom-width: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.arrow_in {
|
|
||||||
z-index: 3;
|
|
||||||
bottom: -5px;
|
|
||||||
border-top-color: #fafafa
|
|
||||||
}
|
|
||||||
|
|
||||||
.arrow_out {
|
|
||||||
z-index: 2;
|
|
||||||
bottom: -6px;
|
|
||||||
border-top-color: #d0d0d0
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user