uodate
This commit is contained in:
parent
f63896c894
commit
52df841626
|
|
@ -3196,6 +3196,9 @@ $(document).ready(function() {
|
|||
});
|
||||
|
||||
});
|
||||
setTimeout(function() {
|
||||
$('.internal-page [data-pp="300"] .w-ba-banner__image').attr('alt', '');
|
||||
}, 500);
|
||||
// 執行 member等高計算,目前改用flexbox故mark掉 by ika 20160105
|
||||
// $(window).load(function() {
|
||||
// if ($('.index-member-3').length && $(window).width() > 992) {
|
||||
|
|
|
|||
|
|
@ -12,11 +12,11 @@
|
|||
src="{{thumb-src}}"
|
||||
alt="{{alt_title}}"
|
||||
>
|
||||
</a>
|
||||
<a href="{{link_to_show}}" title="{{album-name}}" >
|
||||
<div class="mask_title">{{image_description}}</div>
|
||||
<div class="gallery-text">{{link_text}}</div>
|
||||
</a>
|
||||
<a href="{{link_to_show}}" title="{{album-name}}" class="gallery-text">{{link_text}}</a>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -10,13 +10,14 @@
|
|||
<div class="index-pic">
|
||||
<img class="img-thumbnail" src="{{thumb-src}}" alt="{{album-name}}">
|
||||
</div>
|
||||
</a>
|
||||
|
||||
<div class="index-part">
|
||||
<h4 class="index-content-title">
|
||||
<a href="{{link_to_show}}" title="{{album-name}}">{{album-name}}</a>
|
||||
<span>{{album-name}}</span>
|
||||
</h4>
|
||||
<div class="index-img-description">{{album-description}}</div>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -17,16 +17,15 @@
|
|||
</div>
|
||||
</div>
|
||||
<script>
|
||||
setTimeout(function() {
|
||||
var albumTitle = $('.show-title span').text().trim();
|
||||
|
||||
$('.show-content').each(function(index) {
|
||||
var $img = $(this).find('img');
|
||||
if ($img.attr('alt') === 'gallery image') {
|
||||
$img.attr('alt', albumTitle + (index + 1));
|
||||
}
|
||||
});
|
||||
}, 500);
|
||||
setTimeout(function() {
|
||||
var albumTitle = $('.show-title span').text().trim();
|
||||
|
||||
$('.show-content').each(function(index) {
|
||||
var $img = $(this).find('img');
|
||||
if ($img.attr('alt') === 'gallery image') {
|
||||
$img.attr('alt', albumTitle + (index + 1));
|
||||
}
|
||||
});
|
||||
}, 500);
|
||||
|
||||
</script>
|
||||
|
|
@ -7,9 +7,9 @@
|
|||
<div class="i-member-item col-md-6">
|
||||
<div class="i-member-item-inner clearfix">
|
||||
<div class="i-member-pic-wrap col-sm-4">
|
||||
<a href="{{link_to_show}}" title="{{name}}">
|
||||
|
||||
<img class="i-member-pic" src="{{image}}" title="{{name}}">
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="i-member-profile-data-wrap col-sm-8">
|
||||
<ul class="i-member-profile-list" data-list="profile_data" data-level="3">
|
||||
|
|
|
|||
Loading…
Reference in New Issue