update
This commit is contained in:
parent
9d41d9ecb8
commit
4c27badde7
|
|
@ -321,69 +321,80 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
ClickMenuHandler: function() {
|
ClickMenuHandler: function() {
|
||||||
// 處理主選單切換(漢堡 icon)
|
// 處理主選單切換(漢堡 icon)
|
||||||
$(document).on('click', '.navbar-toggle', function (e) {
|
$(document).on('click', '.navbar-toggle', function (e) {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
|
|
||||||
// 確保 .navbar-toggle 放到 .modules-menu 後面
|
// 確保 .navbar-toggle 放到 .modules-menu 後面
|
||||||
$('.mobile-menu').each(function () {
|
$('.mobile-menu').each(function () {
|
||||||
var $menu = $(this);
|
var $menu = $(this);
|
||||||
if ($menu.find('.modules-menu').length && !$menu.find('.modules-menu + .navbar-toggle').length) {
|
if ($menu.find('.modules-menu').length && !$menu.find('.modules-menu + .navbar-toggle').length) {
|
||||||
$menu.find('.modules-menu').after($menu.find('.navbar-toggle'));
|
$menu.find('.modules-menu').after($menu.find('.navbar-toggle'));
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
$('.mobile-menu').toggleClass('active');
|
|
||||||
$('body').toggleClass('noscroll');
|
|
||||||
$('.mobile-menu .navbar-toggle').removeClass('collapsed');
|
|
||||||
|
|
||||||
// 關閉所有下拉選單
|
|
||||||
$('.mobile-menu1 > ul, .mobile-menu2 > ul').slideUp(500);
|
|
||||||
$('.mobile-menu1 > .menu-drop, .mobile-menu2 > .menu-drop').removeClass('opened');
|
|
||||||
|
|
||||||
// 無障礙:聚焦第一個互動元素
|
|
||||||
if ($('.mobile-menu').hasClass('active')) {
|
|
||||||
setTimeout(function () {
|
|
||||||
$('.modules-menu').find('input, button, select, textarea, a').first().focus();
|
|
||||||
}, 100);
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
$('.mobile-menu1 > .menu-drop').click(function(){
|
$('.mobile-menu').toggleClass('active');
|
||||||
var $that = $(this);
|
$('body').toggleClass('noscroll');
|
||||||
var opencheck1 = $that.hasClass('opened');
|
$('.mobile-menu .navbar-toggle').removeClass('collapsed');
|
||||||
if ( opencheck1 == 0 ) {
|
|
||||||
$('.mobile-menu1 > ul').not($that.siblings('ul')).slideUp(500);
|
|
||||||
$('.mobile-menu1 > .menu-drop').not($that).removeClass('opened');
|
|
||||||
$('.mobile-menu2 > ul').slideUp(500);
|
|
||||||
$('.mobile-menu2 > .menu-drop').removeClass('opened');
|
|
||||||
$that.siblings('ul').slideDown(500);
|
|
||||||
$that.addClass('opened');
|
|
||||||
|
|
||||||
} else if (opencheck1 == 1) {
|
// 關閉所有下拉選單
|
||||||
$that.siblings('ul').slideUp(500);
|
$('.mobile-menu1 > ul, .mobile-menu2 > ul').slideUp(500);
|
||||||
$('.mobile-menu2 > ul').slideUp(500);
|
$('.mobile-menu1 > .menu-drop, .mobile-menu2 > .menu-drop').removeClass('opened');
|
||||||
$('.mobile-menu2 > .menu-drop').removeClass('opened');
|
|
||||||
$that.removeClass('opened');
|
|
||||||
|
|
||||||
}
|
// 無障礙:聚焦第一個互動元素
|
||||||
})
|
if ($('.mobile-menu').hasClass('active')) {
|
||||||
|
setTimeout(function () {
|
||||||
|
$('.modules-menu').find('input, button, select, textarea, a').first().focus();
|
||||||
|
}, 100);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
// ✅ Tab 鍵跳過 .navbar-toggle 時,觸發與點擊相同的收合邏輯
|
||||||
|
$(document).on('focusout', '.mobile-menu', function(e) {
|
||||||
|
setTimeout(function() {
|
||||||
|
var $newFocus = $(document.activeElement);
|
||||||
|
// 焦點已離開 .mobile-menu 且選單是展開狀態
|
||||||
|
if ($('.mobile-menu').hasClass('active') && $newFocus.closest('.mobile-menu').length === 0) {
|
||||||
|
// ✅ 直接 trigger click,與按下 .navbar-toggle 執行完全相同的動作
|
||||||
|
$('.navbar-toggle').first().trigger('click');
|
||||||
|
}
|
||||||
|
}, 50);
|
||||||
|
});
|
||||||
|
|
||||||
$('.mobile-menu2 > .menu-drop').click(function(){
|
$('.mobile-menu1 > .menu-drop').click(function(){
|
||||||
var $that = $(this);
|
var $that = $(this);
|
||||||
var opencheck2 = $that.hasClass('opened');
|
var opencheck1 = $that.hasClass('opened');
|
||||||
if ( opencheck2 == 0 ) {
|
if ( opencheck1 == 0 ) {
|
||||||
$('.mobile-menu2 > ul').not($that.siblings('ul')).slideUp(500);
|
$('.mobile-menu1 > ul').not($that.siblings('ul')).slideUp(500);
|
||||||
$('.mobile-menu2 > .menu-drop').not($that).removeClass('opened');
|
$('.mobile-menu1 > .menu-drop').not($that).removeClass('opened');
|
||||||
$that.siblings('ul').slideDown(500);
|
$('.mobile-menu2 > ul').slideUp(500);
|
||||||
$that.addClass('opened');
|
$('.mobile-menu2 > .menu-drop').removeClass('opened');
|
||||||
} else if (opencheck2 == 1) {
|
$that.siblings('ul').slideDown(500);
|
||||||
$that.siblings('ul').slideUp(500);
|
$that.addClass('opened');
|
||||||
$that.removeClass('opened');
|
|
||||||
}
|
} else if (opencheck1 == 1) {
|
||||||
})
|
$that.siblings('ul').slideUp(500);
|
||||||
}
|
$('.mobile-menu2 > ul').slideUp(500);
|
||||||
|
$('.mobile-menu2 > .menu-drop').removeClass('opened');
|
||||||
|
$that.removeClass('opened');
|
||||||
|
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
$('.mobile-menu2 > .menu-drop').click(function(){
|
||||||
|
var $that = $(this);
|
||||||
|
var opencheck2 = $that.hasClass('opened');
|
||||||
|
if ( opencheck2 == 0 ) {
|
||||||
|
$('.mobile-menu2 > ul').not($that.siblings('ul')).slideUp(500);
|
||||||
|
$('.mobile-menu2 > .menu-drop').not($that).removeClass('opened');
|
||||||
|
$that.siblings('ul').slideDown(500);
|
||||||
|
$that.addClass('opened');
|
||||||
|
} else if (opencheck2 == 1) {
|
||||||
|
$that.siblings('ul').slideUp(500);
|
||||||
|
$that.removeClass('opened');
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// 把orbit物件加到window物件裡面並改名為ORBITFRONT來減少名稱衝突的機會
|
// 把orbit物件加到window物件裡面並改名為ORBITFRONT來減少名稱衝突的機會
|
||||||
|
|
@ -648,7 +659,7 @@
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
if (document.documentElement.lang === 'zh_tw') {
|
if (document.documentElement.lang === 'zh_tw') {
|
||||||
document.documentElement.lang = 'zh-Hant';
|
document.documentElement.lang = 'zh-Hant-TW';
|
||||||
}
|
}
|
||||||
//tab鍵按下
|
//tab鍵按下
|
||||||
$(document).on('keydown', function(e) {
|
$(document).on('keydown', function(e) {
|
||||||
|
|
@ -761,20 +772,20 @@
|
||||||
$(this).attr("style", newStyle);
|
$(this).attr("style", newStyle);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
//表格scope
|
// //表格scope
|
||||||
$("table").each(function() {
|
// $("table").each(function() {
|
||||||
$(this).find("tr").each(function(rowIndex) {
|
// $(this).find("tr").each(function(rowIndex) {
|
||||||
$(this).find("th").each(function(colIndex) {
|
// $(this).find("th").each(function(colIndex) {
|
||||||
if (rowIndex === 0) {
|
// if (rowIndex === 0) {
|
||||||
// 第一列的 th,適用於該欄
|
// // 第一列的 th,適用於該欄
|
||||||
$(this).attr("scope", "col");
|
// $(this).attr("scope", "col");
|
||||||
} else if (colIndex === 0) {
|
// } else if (colIndex === 0) {
|
||||||
// 其他列的第一個 th,適用於該行
|
// // 其他列的第一個 th,適用於該行
|
||||||
$(this).attr("scope", "row");
|
// $(this).attr("scope", "row");
|
||||||
}
|
// }
|
||||||
});
|
// });
|
||||||
});
|
// });
|
||||||
});
|
// });
|
||||||
$(".banner-pager button").addClass('banner-pagerbtn');
|
$(".banner-pager button").addClass('banner-pagerbtn');
|
||||||
$(".banner-pager button").attr("type","button");
|
$(".banner-pager button").attr("type","button");
|
||||||
$(".banner-pager button").append('<span style="display: none;">下一張</span>');
|
$(".banner-pager button").append('<span style="display: none;">下一張</span>');
|
||||||
|
|
@ -970,7 +981,7 @@ $(function() {
|
||||||
var urlParams = new URLSearchParams(window.location.search);
|
var urlParams = new URLSearchParams(window.location.search);
|
||||||
var isEditMode = urlParams.get('editmode') === 'on';
|
var isEditMode = urlParams.get('editmode') === 'on';
|
||||||
|
|
||||||
var pageLang = $('html').attr('lang') || 'zh-Hant';
|
var pageLang = $('html').attr('lang') || 'zh-Hant-TW';
|
||||||
var isEn = pageLang.toLowerCase().startsWith('en');
|
var isEn = pageLang.toLowerCase().startsWith('en');
|
||||||
|
|
||||||
var i18n = {
|
var i18n = {
|
||||||
|
|
@ -1059,8 +1070,7 @@ $(function() {
|
||||||
currentTitle.includes('Open in new window') ||
|
currentTitle.includes('Open in new window') ||
|
||||||
currentTitle.includes('/uploads/');
|
currentTitle.includes('/uploads/');
|
||||||
|
|
||||||
// 修正後:只有在沒有原始 title 時才清空
|
if (currentTitle.startsWith('/') || currentTitle.includes('?')) {
|
||||||
if (!hasOriginalTitle && (currentTitle.startsWith('/') || currentTitle.includes('?'))) {
|
|
||||||
currentTitle = "";
|
currentTitle = "";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -2871,6 +2881,7 @@ $(document).ready(function () {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
//post
|
||||||
$(document).ready(function () {
|
$(document).ready(function () {
|
||||||
setTimeout(function () {
|
setTimeout(function () {
|
||||||
$('iframe.twitter-share-button, iframe.twitter-tweet-button').each(function () {
|
$('iframe.twitter-share-button, iframe.twitter-tweet-button').each(function () {
|
||||||
|
|
@ -2878,6 +2889,55 @@ $(document).ready(function () {
|
||||||
});
|
});
|
||||||
}, 1500);
|
}, 1500);
|
||||||
});
|
});
|
||||||
|
$(function() {
|
||||||
|
function bindIframeFocus() {
|
||||||
|
var $iframe = $('.twitter-share-button');
|
||||||
|
if ($iframe.length === 0) return;
|
||||||
|
|
||||||
|
$iframe.each(function() {
|
||||||
|
var $wrap = $(this).closest('.tw-share-button');
|
||||||
|
|
||||||
|
// 讓外層可以被 tab 到並顯示焦點框
|
||||||
|
$wrap.attr('tabindex', '-1');
|
||||||
|
|
||||||
|
$(window).on('blur.twitterFocus', function() {
|
||||||
|
setTimeout(function() {
|
||||||
|
if (document.activeElement &&
|
||||||
|
$(document.activeElement).hasClass('twitter-share-button')) {
|
||||||
|
$wrap.css({
|
||||||
|
'outline': '3px solid #005fcc',
|
||||||
|
'outline-offset': '2px',
|
||||||
|
'border-radius': '2px'
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}, 100);
|
||||||
|
});
|
||||||
|
|
||||||
|
$(window).on('focus.twitterFocus', function() {
|
||||||
|
$wrap.css({
|
||||||
|
'outline': '',
|
||||||
|
'outline-offset': ''
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
// 用 MutationObserver 等 iframe 被 Twitter script 插入後才綁定
|
||||||
|
var observer = new MutationObserver(function(mutations) {
|
||||||
|
if ($('.twitter-share-button').length > 0) {
|
||||||
|
bindIframeFocus();
|
||||||
|
observer.disconnect(); // 綁定成功後停止監聽
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
observer.observe(document.body, {
|
||||||
|
childList: true,
|
||||||
|
subtree: true
|
||||||
|
});
|
||||||
|
|
||||||
|
// 保險:2秒後強制執行一次
|
||||||
|
setTimeout(bindIframeFocus, 1000);
|
||||||
|
});
|
||||||
//orbitbarlogo無障礙
|
//orbitbarlogo無障礙
|
||||||
$(function() {
|
$(function() {
|
||||||
var $logo = $('.orbit-bar-logo');
|
var $logo = $('.orbit-bar-logo');
|
||||||
|
|
@ -2923,6 +2983,9 @@ $(function() {
|
||||||
var target = document.getElementById('gallery-theater-stage');
|
var target = document.getElementById('gallery-theater-stage');
|
||||||
if (!target) return;
|
if (!target) return;
|
||||||
|
|
||||||
|
// 頁面載入時若已存在 #gallery-theater-stage,則還原 z-index
|
||||||
|
$('.verticalhome').css('z-index', 'auto');
|
||||||
|
|
||||||
var observer = new MutationObserver(function() {
|
var observer = new MutationObserver(function() {
|
||||||
var display = target.style.display;
|
var display = target.style.display;
|
||||||
if (display === 'block') {
|
if (display === 'block') {
|
||||||
|
|
|
||||||
|
|
@ -4,13 +4,16 @@
|
||||||
@import "variables";
|
@import "variables";
|
||||||
|
|
||||||
.fa-classic, .fa-regular, .fa-solid, .far, .fas ,.fa{
|
.fa-classic, .fa-regular, .fa-solid, .far, .fas ,.fa{
|
||||||
font-family: var(--fa-style-family, "FontAwesome");
|
font-family: "FontAwesome";
|
||||||
}
|
}
|
||||||
#orbit-bar .orbit-bar-inner > label:focus, #orbit-bar .orbit-bar-inner > label.focus{
|
#orbit-bar .orbit-bar-inner > label:focus, #orbit-bar .orbit-bar-inner > label.focus{
|
||||||
.orbit-bar-search-sign-language{
|
.orbit-bar-search-sign-language{
|
||||||
display: block
|
display: block
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
#orbit-bar .orbit-bar-menu .orbit-bar-logo{
|
||||||
|
cursor: unset!important;
|
||||||
|
}
|
||||||
|
|
||||||
.login-btn:focus {
|
.login-btn:focus {
|
||||||
outline: 0.3125em auto -webkit-focus-ring-color !important;
|
outline: 0.3125em auto -webkit-focus-ring-color !important;
|
||||||
|
|
|
||||||
|
|
@ -15,9 +15,8 @@
|
||||||
font-size: 0.750em;
|
font-size: 0.750em;
|
||||||
border-radius: 0.125em;
|
border-radius: 0.125em;
|
||||||
z-index: 1050;
|
z-index: 1050;
|
||||||
opacity: .8;
|
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
background:#cc0066;
|
background:#6e0037;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,11 @@
|
||||||
@charset "utf-8";
|
@charset "utf-8";
|
||||||
|
|
||||||
@import "../initial";
|
@import "../initial";
|
||||||
|
.line-it-button{
|
||||||
|
.label{
|
||||||
|
color: #333!important;
|
||||||
|
}
|
||||||
|
}
|
||||||
.col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9{
|
.col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9{
|
||||||
@media(max-width: $screen-xs){
|
@media(max-width: $screen-xs){
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
|
|
||||||
|
|
@ -30,9 +30,11 @@ ul.button-mid{
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
ul.button-mid{
|
.button-mid {
|
||||||
margin:0;
|
position: absolute;
|
||||||
z-index: 201;
|
width: 100%;
|
||||||
|
height: 0;
|
||||||
|
top: 50%;
|
||||||
}
|
}
|
||||||
.banner-pager .active-slide button{
|
.banner-pager .active-slide button{
|
||||||
background: $theme-color-second!important;
|
background: $theme-color-second!important;
|
||||||
|
|
|
||||||
|
|
@ -2611,12 +2611,6 @@
|
||||||
.i-annc__entry-title {
|
.i-annc__entry-title {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
display: -webkit-box;
|
|
||||||
-webkit-line-clamp: 2;
|
|
||||||
-webkit-box-orient: vertical;
|
|
||||||
overflow: hidden;
|
|
||||||
text-overflow: ellipsis;
|
|
||||||
// clear: both;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.i-annc__title {
|
.i-annc__title {
|
||||||
|
|
@ -2624,6 +2618,11 @@
|
||||||
color: $theme-color-main;
|
color: $theme-color-main;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
@extend .i-title;
|
@extend .i-title;
|
||||||
|
display: -webkit-box;
|
||||||
|
-webkit-line-clamp: 2;
|
||||||
|
-webkit-box-orient: vertical;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
overflow: hidden;
|
||||||
&:hover {
|
&:hover {
|
||||||
color: $theme-color-second;
|
color: $theme-color-second;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -144,18 +144,18 @@
|
||||||
.i-archive-title {
|
.i-archive-title {
|
||||||
@extend .unity-title;
|
@extend .unity-title;
|
||||||
}
|
}
|
||||||
.link { background-color: #1368d4 !important; } /* 對比 4.6:1 */
|
.link { background-color: #1368d4 !important; margin-left: 0.5em; } /* 對比 4.6:1 */
|
||||||
.txt { background-color: #3a8a40 !important; } /* 對比 4.6:1 */
|
.txt { background-color: #3a8a40 !important; margin-left: 0.5em; } /* 對比 4.6:1 */
|
||||||
.xlsx { background-color: #9e3050 !important; } /* 對比 4.6:1 */
|
.xlsx { background-color: #9e3050 !important; margin-left: 0.5em; } /* 對比 4.6:1 */
|
||||||
.pdf { background-color: #2a7d36 !important; } /* 對比 4.6:1 */
|
.pdf { background-color: #2a7d36 !important; margin-left: 0.5em; } /* 對比 4.6:1 */
|
||||||
.docx { background-color: #5e46a0 !important; } /* 對比 4.6:1 */
|
.docx { background-color: #5e46a0 !important; margin-left: 0.5em; } /* 對比 4.6:1 */
|
||||||
.doc { background-color: #1368d4 !important; } /* 對比 4.6:1 */
|
.doc { background-color: #1368d4 !important; margin-left: 0.5em; } /* 對比 4.6:1 */
|
||||||
.pptx { background-color: #3d4aa0 !important; } /* 對比 4.6:1 */
|
.pptx { background-color: #3d4aa0 !important; margin-left: 0.5em; } /* 對比 4.6:1 */
|
||||||
.jpg { background-color: #8f3333 !important; } /* 對比 4.6:1 */
|
.jpg { background-color: #8f3333 !important; margin-left: 0.5em; } /* 對比 4.6:1 */
|
||||||
.zip { background-color: #8a6400 !important; } /* 對比 4.6:1 */
|
.zip { background-color: #8a6400 !important; margin-left: 0.5em; } /* 對比 4.6:1 */
|
||||||
.rar { background-color: #9e5000 !important; } /* 對比 4.6:1 */
|
.rar { background-color: #9e5000 !important; margin-left: 0.5em; } /* 對比 4.6:1 */
|
||||||
.xls { background-color: #3a8a40 !important; } /* 對比 4.6:1 */
|
.xls { background-color: #3a8a40 !important; margin-left: 0.5em; } /* 對比 4.6:1 */
|
||||||
.odt { background-color: #767676 !important; } /* 對比 4.6:1 */
|
.odt { background-color: #767676 !important; margin-left: 0.5em; } /* 對比 4.6:1 */
|
||||||
.table>caption+thead>tr:first-child>td, .table>caption+thead>tr:first-child>th, .table>colgroup+thead>tr:first-child>td, .table>colgroup+thead>tr:first-child>th, .table>thead:first-child>tr:first-child>td, .table>thead:first-child>tr:first-child>th{
|
.table>caption+thead>tr:first-child>td, .table>caption+thead>tr:first-child>th, .table>colgroup+thead>tr:first-child>td, .table>colgroup+thead>tr:first-child>th, .table>thead:first-child>tr:first-child>td, .table>thead:first-child>tr:first-child>th{
|
||||||
// border-top: 0.0625em solid #ddd;
|
// border-top: 0.0625em solid #ddd;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -333,7 +333,7 @@
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
& > a {
|
& > a {
|
||||||
color: $theme-color-second;
|
color: #ff0f87;
|
||||||
background: transparent;
|
background: transparent;
|
||||||
box-shadow:none;
|
box-shadow:none;
|
||||||
&:after{
|
&:after{
|
||||||
|
|
|
||||||
|
|
@ -135,7 +135,7 @@ ul.tab_nav {
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
padding: 2px 40px !important;
|
padding: 2px 40px !important;
|
||||||
float: none;
|
float: none;
|
||||||
color: #fff;
|
color: #333;
|
||||||
width: 275px;
|
width: 275px;
|
||||||
height: 45px;
|
height: 45px;
|
||||||
background: url(/assets/btn_title_02@2x.png) no-repeat;
|
background: url(/assets/btn_title_02@2x.png) no-repeat;
|
||||||
|
|
@ -176,7 +176,7 @@ ul.tab_nav {
|
||||||
border: none;
|
border: none;
|
||||||
background: url(/assets/btn_title_01@2x.png) no-repeat;
|
background: url(/assets/btn_title_01@2x.png) no-repeat;
|
||||||
background-size: 275px 46px;
|
background-size: 275px 46px;
|
||||||
color: #fff;
|
color: #333;
|
||||||
&:before,
|
&:before,
|
||||||
&:after{
|
&:after{
|
||||||
width:100%;
|
width:100%;
|
||||||
|
|
|
||||||
|
|
@ -29,7 +29,9 @@
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</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="播放控制選項">
|
<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">
|
<a role="radio" aria-checked="true" href="javascript:;" class="resume-slide active" title="繼續播放" aria-label="繼續播放" aria-live="assertive">
|
||||||
<i aria-hidden="true"></i>
|
<i aria-hidden="true"></i>
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@
|
||||||
<div class="index-content col-xs-4 col-sm-3">
|
<div class="index-content col-xs-4 col-sm-3">
|
||||||
<div class="index-content-inner">
|
<div class="index-content-inner">
|
||||||
<div class="index-pic">
|
<div class="index-pic">
|
||||||
<img class="img-thumbnail" src="{{thumb-src}}" alt="{{alt_title}}">
|
<img class="img-thumbnail" src="{{thumb-src}}" alt="{{album-name}}">
|
||||||
</div>
|
</div>
|
||||||
<section class="index-part">
|
<section class="index-part">
|
||||||
<h4 class="index-content-title">
|
<h4 class="index-content-title">
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@
|
||||||
<div class="index-content col-xs-4 col-sm-3">
|
<div class="index-content col-xs-4 col-sm-3">
|
||||||
<div class="index-content-inner">
|
<div class="index-content-inner">
|
||||||
<div class="index-pic">
|
<div class="index-pic">
|
||||||
<img class="img-thumbnail" src="{{thumb-src}}" alt="{{alt_title}}">
|
<img class="img-thumbnail" src="{{thumb-src}}" alt="{{album-name}}">
|
||||||
</div>
|
</div>
|
||||||
<section class="index-part">
|
<section class="index-part">
|
||||||
<h4 class="index-content-title">
|
<h4 class="index-content-title">
|
||||||
|
|
|
||||||
|
|
@ -4,15 +4,16 @@
|
||||||
</h3>
|
</h3>
|
||||||
<div class="row" data-level="0" data-list="albums" style="display: flex;flex-wrap: wrap;">
|
<div class="row" data-level="0" data-list="albums" style="display: flex;flex-wrap: wrap;">
|
||||||
<div class="index-content col-sm-3">
|
<div class="index-content col-sm-3">
|
||||||
<a href="{{link_to_show}}" aria-label="前往{{page-title}}" title="{{page-title}}">
|
|
||||||
<div class="index-content-inner">
|
<div class="index-content-inner">
|
||||||
|
<a href="{{link_to_show}}" title="{{album-name}}">
|
||||||
<div class="index-pic">
|
<div class="index-pic">
|
||||||
<img class="img-thumbnail" src="{{thumb-src}}" alt="{{alt_title}}">
|
<img class="img-thumbnail" src="{{thumb-src}}" alt="{{album-name}}">
|
||||||
</div>
|
</div>
|
||||||
</a>
|
</a>
|
||||||
<div class="index-part">
|
<div class="index-part">
|
||||||
<h4 class="index-content-title">
|
<h4 class="index-content-title">
|
||||||
<a href="{{link_to_show}}" aria-label="前往{{page-title}}" title="{{page-title}}">{{album-name}}</a>
|
<a href="{{link_to_show}}" title="{{album-name}}">{{album-name}}</a>
|
||||||
</h4>
|
</h4>
|
||||||
<div class="index-img-description">{{album-description}}</div>
|
<div class="index-img-description">{{album-description}}</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -5,14 +5,14 @@
|
||||||
<div class="row" data-level="0" data-list="albums" style="display: flex;flex-wrap: wrap;">
|
<div class="row" data-level="0" data-list="albums" style="display: flex;flex-wrap: wrap;">
|
||||||
<div class="index-content">
|
<div class="index-content">
|
||||||
<div class="index-content-inner clearfix row">
|
<div class="index-content-inner clearfix row">
|
||||||
<a href="{{link_to_show}}" aria-label="前往{{page-title}}" title="{{page-title}}">
|
<a href="{{link_to_show}}" aria-label="前往{{album-name}}" title="{{album-name}}">
|
||||||
<div class="index-pic col-xs-5 col-sm-2">
|
<div class="index-pic col-xs-5 col-sm-2">
|
||||||
<img class="index-img" src="{{thumb-src}}" alt="{{alt_title}}">
|
<img class="index-img" src="{{thumb-src}}" alt="{{alt_title}}">
|
||||||
</div>
|
</div>
|
||||||
</a>
|
</a>
|
||||||
<div class="index-part col-xs-7 col-sm-10">
|
<div class="index-part col-xs-7 col-sm-10">
|
||||||
<h4 class="index-content-title">
|
<h4 class="index-content-title">
|
||||||
<a href="{{link_to_show}}" aria-label="前往{{page-title}}" title="{{page-title}}">{{album-name}}</a>
|
<a href="{{link_to_show}}" aria-label="前往{{album-name}}" title="{{album-name}}">{{album-name}}</a>
|
||||||
</h4>
|
</h4>
|
||||||
<div class="index-img-description">{{album-description}}</div>
|
<div class="index-img-description">{{album-description}}</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -4,15 +4,15 @@
|
||||||
</h3>
|
</h3>
|
||||||
<div class="row" data-level="0" data-list="albums" style="display: flex;flex-wrap: wrap;">
|
<div class="row" data-level="0" data-list="albums" style="display: flex;flex-wrap: wrap;">
|
||||||
<div class="index-content col-sm-3">
|
<div class="index-content col-sm-3">
|
||||||
<a href="{{link_to_show}}" aria-label="前往{{page-title}}" title="{{page-title}}">
|
<a href="{{link_to_show}}" aria-label="前往{{album-name}}" title="{{album-name}}">
|
||||||
<div class="index-content-inner">
|
<div class="index-content-inner">
|
||||||
<div class="index-pic">
|
<div class="index-pic">
|
||||||
<img class="img-thumbnail" src="{{thumb-src}}" alt="{{alt_title}}">
|
<img class="img-thumbnail" src="{{thumb-src}}" alt="{{album-name}}">
|
||||||
</div>
|
</div>
|
||||||
</a>
|
</a>
|
||||||
<div class="index-part">
|
<div class="index-part">
|
||||||
<h4 class="index-content-title">
|
<h4 class="index-content-title">
|
||||||
<a href="{{link_to_show}}" aria-label="前往{{page-title}}" title="{{page-title}}">{{album-name}}</a>
|
<a href="{{link_to_show}}" aria-label="前往{{album-name}}" title="{{album-name}}">{{album-name}}</a>
|
||||||
</h4>
|
</h4>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -5,14 +5,14 @@
|
||||||
<div class="row" data-level="0" data-list="albums" style="display: flex;flex-wrap: wrap;">
|
<div class="row" data-level="0" data-list="albums" style="display: flex;flex-wrap: wrap;">
|
||||||
<div class="index-content">
|
<div class="index-content">
|
||||||
<div class="index-content-inner clearfix row">
|
<div class="index-content-inner clearfix row">
|
||||||
<a href="{{link_to_show}}" aria-label="前往{{page-title}}" title="{{page-title}}">
|
<a href="{{link_to_show}}" aria-label="前往{{album-name}}" title="{{album-name}}">
|
||||||
<div class="index-pic col-xs-5 col-sm-2">
|
<div class="index-pic col-xs-5 col-sm-2">
|
||||||
<img class="index-img" src="{{thumb-src}}" alt="{{alt_title}}">
|
<img class="index-img" src="{{thumb-src}}" alt="{{alt_title}}">
|
||||||
</div>
|
</div>
|
||||||
</a>
|
</a>
|
||||||
<div class="index-part col-xs-7 col-sm-10">
|
<div class="index-part col-xs-7 col-sm-10">
|
||||||
<h4 class="index-content-title">
|
<h4 class="index-content-title">
|
||||||
<a href="{{link_to_show}}" aria-label="前往{{page-title}}" title="{{page-title}}">{{album-name}}</a>
|
<a href="{{link_to_show}}" aria-label="前往{{album-name}}" title="{{album-name}}">{{album-name}}</a>
|
||||||
</h4>
|
</h4>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -8,11 +8,11 @@
|
||||||
|
|
||||||
<div class="card-front">
|
<div class="card-front">
|
||||||
<div class="card-body" style="padding:0;">
|
<div class="card-body" style="padding:0;">
|
||||||
<a href="{{link_to_show}}" aria-label="前往{{page-title}}" title="{{page-title}}">
|
<a href="{{link_to_show}}" aria-label="前往{{album-name}}" title="{{album-name}}">
|
||||||
<img src="{{thumb-src}}"alt="{{alt_title}}">
|
<img src="{{thumb-src}}"alt="{{alt_title}}">
|
||||||
</a>
|
</a>
|
||||||
<div class="card-footer">
|
<div class="card-footer">
|
||||||
<a href="{{link_to_show}}" aria-label="前往{{page-title}}" title="{{page-title}}">
|
<a href="{{link_to_show}}" aria-label="前往{{album-name}}" title="{{album-name}}">
|
||||||
<h3 class="card-title">{{album-name}}</h3>
|
<h3 class="card-title">{{album-name}}</h3>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -6,14 +6,14 @@
|
||||||
<div class="index-content col-sm-3">
|
<div class="index-content col-sm-3">
|
||||||
|
|
||||||
<div class="index-content-inner">
|
<div class="index-content-inner">
|
||||||
<a href="{{link_to_show}}" aria-label="前往{{page-title}}" title="{{page-title}}">
|
<a href="{{link_to_show}}" aria-label="前往{{album-name}}" title="{{album-name}}">
|
||||||
<div class="index-pic">
|
<div class="index-pic">
|
||||||
<img class="img-thumbnail" src="{{thumb-src}}" alt="{{alt_title}}">
|
<img class="img-thumbnail" src="{{thumb-src}}" alt="{{album-name}}">
|
||||||
</div>
|
</div>
|
||||||
</a>
|
</a>
|
||||||
<section class="index-part">
|
<section class="index-part">
|
||||||
<h4 class="index-content-title">
|
<h4 class="index-content-title">
|
||||||
<a href="{{link_to_show}}" aria-label="前往{{page-title}}" title="{{page-title}}">{{album-name}}</a>
|
<a href="{{link_to_show}}" aria-label="前往{{album-name}}" title="{{album-name}}">{{album-name}}</a>
|
||||||
</h4>
|
</h4>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -9,7 +9,7 @@
|
||||||
<div class="link-img-wrap{{display_image}}">
|
<div class="link-img-wrap{{display_image}}">
|
||||||
<img src="{{img_src}}" alt="{{img_description}}" title="{{img_description}}">
|
<img src="{{img_src}}" alt="{{img_description}}" title="{{img_description}}">
|
||||||
</div>
|
</div>
|
||||||
<a class="widget-content-title" href="{{link_to_show}}" target="{{target}}" title="{{title_text}}">{{title}}</a>
|
<a class="widget-content-title" href="{{link_to_show}}" target="{{target}}" title="{{title_text}}" onclick="{{onclick}}">{{title}}</a>
|
||||||
<span data-list="statuses" data-level="1">
|
<span data-list="statuses" data-level="1">
|
||||||
<span class="label status {{status-class}}">{{status}}</span>
|
<span class="label status {{status-class}}">{{status}}</span>
|
||||||
</span>
|
</span>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue