samedi 7 mars 2015

Remove Jquery from this code


Vote count:

0




Hey i´m trying to implement this parallax code into plain js



$(document).ready(function(){

function draw() {
requestAnimationFrame(draw);
// Drawing code goes here
scrollEvent();
}
draw();

});

function scrollEvent(){

if(!is_touch_device()){
viewportTop = $(window).scrollTop();
windowHeight = $(window).height();
viewportBottom = windowHeight+viewportTop;

if($(window).width())

$('[data-parallax="true"]').each(function(){
distance = viewportTop * $(this).attr('data-speed');
if($(this).attr('data-direction') === 'up'){ sym = '-'; } else { sym = ''; }
$(this).css('transform','translate3d(0, ' + sym + distance +'px,0)');
});

}
}

function is_touch_device() {
return 'ontouchstart' in window // works on most browsers
|| 'onmsgesturechange' in window; // works on ie10
}


this is how far i got



(function() {

function draw() {
requestAnimationFrame(draw);
// Drawing code goes here
scrollEvent();
}
draw();

})();


function getElementsByAttribute(attribute, context) {
var nodeList = (context || document).getElementsByTagName('*');
var nodeArray = [];
var iterator = 0;
var node = null;

while (node = nodeList[iterator++]) {
if (node.getAttribute(attribute)) nodeArray.push(node);
}

return nodeArray;
}
function scrollEvent(){


viewportTop = $(window).scrollTop();
windowHeight = $(window).height();
viewportBottom = windowHeight+viewportTop;
els = getElementsByAttribute('data-parallax');

for (var i = 0; i < els.length; i++) {
distance = viewportTop * els[i].getAttribute('data-speed');
if(els[i].getAttribute('data-direction') === 'up'){ sym = '-'; } else { sym = ''; }
els[i].style.webkitTransform = "translate3d(0, " + sym + distance +"px,0)";

};


}

function is_touch_device() {
return 'ontouchstart' in window // works on most browsers
|| 'onmsgesturechange' in window; // works on ie10
}


so basically i need to replace these two lines



viewportTop = $(window).scrollTop();
windowHeight = $(window).height();


asked 41 secs ago







Remove Jquery from this code

Aucun commentaire:

Enregistrer un commentaire