This commit is contained in:
parent
48440dad0d
commit
c82153e067
|
|
@ -30,9 +30,11 @@ ul.button-mid{
|
|||
}
|
||||
}
|
||||
}
|
||||
ul.button-mid{
|
||||
margin:0;
|
||||
z-index: 201;
|
||||
.button-mid {
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: 0;
|
||||
top: 50%;
|
||||
}
|
||||
.banner-pager .active-slide button{
|
||||
background: $theme-color-second!important;
|
||||
|
|
|
|||
|
|
@ -182,7 +182,7 @@
|
|||
border-top: 4px solid #dd9933;
|
||||
}
|
||||
.kenmenu-drop{
|
||||
padding-left: 0.5em;
|
||||
padding-left: 0;
|
||||
font-size: small;
|
||||
}
|
||||
|
||||
|
|
@ -285,7 +285,7 @@
|
|||
|
||||
& > a {
|
||||
display: block;
|
||||
padding: 1em;
|
||||
padding: 1em 0.5em;
|
||||
font-family: $main-font;
|
||||
font-size: 1em;
|
||||
color:#fff;
|
||||
|
|
|
|||
|
|
@ -29,7 +29,9 @@
|
|||
|
||||
</div>
|
||||
</div>
|
||||
<ul class="w-ba-banner__pager-2 banner-pager banner_caption_{{subpart-id}}"></ul>
|
||||
<div class="w-ad-banner__pager-2 w-ba-banner__caption banner-pager banner_caption_{{subpart-id}}" data-list="images" data-level="0">
|
||||
<li><button title="Slide {{slide_number}}" aria-label="Pager"><span style="display: none;">Slide {{slide_number}}</span></button></li>
|
||||
</div>
|
||||
<ul class="controlplay" role="radiogroup" aria-label="播放控制選項">
|
||||
<a role="radio" aria-checked="true" href="javascript:;" class="resume-slide active" title="繼續播放" aria-label="繼續播放" aria-live="assertive">
|
||||
<i aria-hidden="true"></i>
|
||||
|
|
|
|||
|
|
@ -73,6 +73,14 @@ function moveProfileItemsIntoPicWrap() {
|
|||
$title1ProfileItems.appendTo($picWrap);
|
||||
}
|
||||
|
||||
const $title2ProfileItems = $memberItem
|
||||
.find('.i-member-profile-item')
|
||||
.has('.member-data-value-2');
|
||||
|
||||
if ($title2ProfileItems.length) {
|
||||
$title2ProfileItems.appendTo($picWrap);
|
||||
}
|
||||
|
||||
// 只抓「本 i-member-item 中,包含 .member-data-value-7 的 profile-item」
|
||||
const $title7ProfileItems = $memberItem
|
||||
.find('.i-member-profile-item')
|
||||
|
|
|
|||
Loading…
Reference in New Issue