我会将title
属性用作图库中的标题。标题将位于页面上的fixed
位置。我无法动态更新title
中div
属性的内容,一次显示各种标题。
html标记
<!-- fist slide -->
<div class="section" id="gallery-start">
<div class="content">
<img src="img/1.jpg" title="Caption text 1">
</div>
</div>
...
<!-- caption -->
<div class="caption-display"></div>
js script
$('.caption-display').each(function(i) {
$(this).html($('.gallery-element').eq(i).attr('title'));
});
例如
答案 0 :(得分:0)
我希望它会有用,我这样解决了。
<强> HTML 强>
<!-- caption -->
<div class="caption-box">
<p class="caption-description">
Caption text 1
</p>
</div>
<强> CSS 强>
.caption-description
{
display: none;
}
.caption-display
{
position: fixed;
bottom: 10px;
left: 10px;
}
<强> JS 强>
$(window).load(function () {
var window_center = $(window).height();
var threshold = 0;
$(window).on("scroll resize", function () {
scroll = $(window).scrollTop();
$('.section').each(function () {
var post_center = $(this).height()/2 + $(this).offset().top;
if (post_center + threshold < window_center + scroll ||
post_center - threshold < window_center + scroll){
if (!$(this).hasClass('active')){
$('.section').removeClass('active');
$(this).addClass('active');
$('.caption-display').hide();
var newDescr = $(this).find('.caption-description');
$('.caption-display').html(newDescr.html());
$('.caption-display').fadeIn('slow');
}
}
});
});
$(document).ready(function () {
$(window).trigger('scroll'); // init the value
});
});