我编写了一个Javascript / jQuery函数,用于将HTML5数据属性动态编写到某些HTML标记中,并使Skrollr plugin正常工作。我无法使用jQuery .data(),因为它只存储(它不在标签内部写入)属性。这是我的代码:
parallaxData();
window.addEventListener('resize', parallaxData);
function parallaxData(){
if ($(window).width() > 768 && imgContainer.length) {
var imgContainerJS = document.getElementById('big-image'),
captionJS = document.getElementById('caption'),
headerJS = document.getElementById('header');
imgContainerJS.dataset.top = 'transform:translateY(0px);'
imgContainerJS.dataset.topBottom = 'transform:translateY(' + '-' + imgHeight/4 + 'px);'
captionJS.dataset.anchorTarget = "#big-image-wrap"
captionJS.dataset.top = 'transform:translateY(0px);'
captionJS.dataset.topBottom = 'transform:translateY(' + '-' + imgHeight/8 + 'px);'
headerJS.dataset.anchorTarget = "#big-image-wrap"
headerJS.dataset.top = 'transform:translateY(0px);'
headerJS.dataset.topBottom = 'transform:translateY(' + '-' + imgHeight/4 + 'px);'
var animDone = false;
skrollr.init({
forceHeight: false,
smoothScrolling: false,
render: function() {
if ( header.hasClass('skrollable-after') ) {
if ( ! animDone ) {
animDone = true;
header.addClass('fixed-header').css({
'display' : 'none'
}).fadeIn(300);
}
} else {
animDone = false;
header.removeClass('fixed-header');
}
}
}).refresh();
imgCaption.css({ position: 'fixed' });
singleImg.css({ position: 'fixed' });
} else if ($(window).width() > 768) {
$('#content').css({ marginTop: headerHeight + 'px' });
imgCaption.css({ position: 'fixed' });
singleImg.css({ position: 'fixed' });
} else {
skrollr.init().destroy();
$('#content').css({ marginTop: 0 + 'px' });
var parallaxEls = $('header, #big-image, #caption'),
attrs = parallaxEls[0].attributes,
name,
index;
for (index = attrs.length - 1; index >= 0; --index) {
name = attrs[index].nodeName;
if (name.substring(0, 5) === "data-") {
parallaxEls.removeAttr(name);
}
}
parallaxEls.css({
'-webkit-transform' : '',
'-moz-transform' : '',
'transform' : '',
'backgroundPosition' : ''
}).removeClass('skrollable-after');
imgCaption.css({ position: 'absolute' });
singleImg.css({ position: 'absolute' });
}
}
我想知道是否有机会仅使用jQuery实现相同的结果,也因为我需要按类选择元素而不是ID。
答案 0 :(得分:0)
我用jQuery试了一下。可以将属性添加到img或div或其他任何内容。
http://api.jquery.com/attr/#attr-attributeName-value
$(document).ready(function(){
$(".yourclass").attr({
"data-450": "exampleCSS:examplechange;",
"data-500": "exampleCSS:examplechange;"});
});
我尝试使用我的代码中的一个div并且元素不可见,但添加了属性,我可以在firebug中看到它
其他div仍在滚动,所以我把它搞砸了。
希望它对你有所帮助(即使你几个月前问过)。如果您已找到答案,请分享您的解决方案