File: /home/adventp/www/wp-content/themes/brooklyn/js/ut-distortion.js
;(function($){
"use strict";
function gcd(a,b) {
var temp, m;
if(b>a) {
temp = a;
a = b;
b = temp;
}
while(b!==0) {
m=a%b;
a=b;
b=m;
}
return a;
}
function ratio(x,y,val) {
var c;
c=gcd(x,y);
if( val === 'w' ) {
return x/c;
} else {
return y/c;
}
}
window.hoverEffect = function(opts) {
var vertex = 'varying vec2 vUv;' +
'void main() {' +
'vUv = uv;' +
'gl_Position = projectionMatrix * modelViewMatrix * vec4( position, 1.0 );' +
'}';
var fragment = 'varying vec2 vUv;' +
'uniform sampler2D texture;' +
'uniform sampler2D texture2;' +
'uniform sampler2D disp;' +
'uniform float dispFactor;' +
'uniform float effectFactor;' +
'void main() {' +
'vec2 uv = vUv;' +
'vec4 disp = texture2D(disp, uv);' +
'vec2 distortedPosition = vec2(uv.x + dispFactor * (disp.r*effectFactor), uv.y);' +
'vec2 distortedPosition2 = vec2(uv.x - (1.0 - dispFactor) * (disp.r*effectFactor), uv.y);' +
'vec4 _texture = texture2D(texture, distortedPosition);' +
'vec4 _texture2 = texture2D(texture2, distortedPosition2);' +
'vec4 finalTexture = mix(_texture, _texture2, dispFactor);' +
'gl_FragColor = finalTexture;' +
'}';
var parent = opts.parent || console.warn("no parent");
var dispImage = opts.displacementImage || console.warn("displacement image missing");
var image1 = opts.image1 || console.warn("first image missing");
var image2 = opts.image2 || console.warn("second image missing");
var intensity = opts.intensity || 1;
var speedIn = opts.speedIn || 1.6;
var speedOut = opts.speedOut || 1.2;
var easing = opts.easing || Expo.easeOut;
var userHover = (opts.hover === undefined) ? true : opts.hover;
var mobileAndTabletcheck = function() {
var check = false;
(function(a){if(/(android|bb\d+|meego).+mobile|avantgo|bada\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\.(browser|link)|vodafone|wap|windows ce|xda|xiino|android|ipad|playbook|silk/i.test(a)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\-(n|u)|c55\/|capi|ccwa|cdm\-|cell|chtm|cldc|cmd\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\-s|devi|dica|dmob|do(c|p)o|ds(12|\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\-|_)|g1 u|g560|gene|gf\-5|g\-mo|go(\.w|od)|gr(ad|un)|haie|hcit|hd\-(m|p|t)|hei\-|hi(pt|ta)|hp( i|ip)|hs\-c|ht(c(\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\-(20|go|ma)|i230|iac( |\-|\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\/)|klon|kpt |kwc\-|kyo(c|k)|le(no|xi)|lg( g|\/(k|l|u)|50|54|\-[a-w])|libw|lynx|m1\-w|m3ga|m50\/|ma(te|ui|xo)|mc(01|21|ca)|m\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\-2|po(ck|rt|se)|prox|psio|pt\-g|qa\-a|qc(07|12|21|32|60|\-[2-7]|i\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\-|oo|p\-)|sdk\/|se(c(\-|0|1)|47|mc|nd|ri)|sgh\-|shar|sie(\-|m)|sk\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\-|v\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\-|tdg\-|tel(i|m)|tim\-|t\-mo|to(pl|sh)|ts(70|m\-|m3|m5)|tx\-9|up(\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\-|your|zeto|zte\-/i.test(a.substr(0,4))) check = true;})(navigator.userAgent||navigator.vendor||window.opera);
return check;
};
var scene = new THREE.Scene();
var camera = new THREE.OrthographicCamera(
parent.offsetWidth / -2,
parent.offsetWidth / 2,
parent.offsetHeight / 2,
parent.offsetHeight / -2,
1,
1000
);
camera.position.z = 1;
var renderer = new THREE.WebGLRenderer({
antialias: true,
alpha: true
});
var aspect_ratio_w = ratio(opts.image1_w,opts.image1_h, 'w');
var aspect_ratio_h = ratio(opts.image1_w,opts.image1_h, 'h');
var calculated_width = parent.offsetWidth;
var calculated_height = ( parent.offsetWidth / aspect_ratio_w * aspect_ratio_h );
if( parent.offsetHeight >= calculated_height ) {
calculated_height = parent.offsetHeight;
calculated_width = ( parent.offsetHeight / aspect_ratio_h * aspect_ratio_w );
}
renderer.setPixelRatio = 1;
renderer.setClearColor(0xffffff, 0.0);
if( calculated_height >= $(window).height() ) {
renderer.setSize( calculated_width, calculated_height, false );
} else {
renderer.setSize( calculated_width, calculated_height );
}
parent.appendChild(renderer.domElement);
var addToGPU = function(t) {
renderer.setTexture2D(t, 0);
};
var loader = new THREE.TextureLoader();
loader.crossOrigin = "";
var texture1 = loader.load(image1, function(texture) {
addToGPU(texture);
});
var texture2 = loader.load(image2, function(texture) {
addToGPU(texture);
});
var disp = loader.load(dispImage);
disp.wrapS = disp.wrapT = THREE.RepeatWrapping;
// texture1.magFilter = texture2.magFilter = THREE.LinearFilter;
// texture1.minFilter = texture2.minFilter = THREE.LinearMipMapLinearFilter;
texture1.anisotropy = renderer.getMaxAnisotropy();
texture2.anisotropy = renderer.getMaxAnisotropy();
var mat = new THREE.ShaderMaterial({
uniforms: {
effectFactor: { type: "f", value: intensity },
dispFactor: { type: "f", value: 0.0 },
texture: { type: "t", value: texture1 },
texture2: { type: "t", value: texture2 },
disp: { type: "t", value: disp }
},
vertexShader: vertex,
fragmentShader: fragment,
transparent: true,
opacity: 1.0
});
var geometry = new THREE.PlaneBufferGeometry(
parent.offsetWidth,
parent.offsetHeight,
1
);
var object = new THREE.Mesh(geometry, mat);
scene.add(object);
var addEvents = function(){
// event listener for section / rows or columns
var new_parent = $(parent).closest(".ut-background-with-distortion-effect")[0];
if( $(parent).closest(".ut-background-with-distortion-effect").hasClass("ut-early-distortion-effect") ) {
new_parent = $(parent).closest(".vc_row")[0];
}
if( mobileAndTabletcheck() ) {
$(new_parent).on('swipeleft swiperight', function(e) {
e.preventDefault();
TweenMax.to(mat.uniforms.dispFactor, speedIn, {
value: 1,
ease: easing
});
});
$(new_parent).on('swipeend', function(e) {
e.preventDefault();
TweenMax.to(mat.uniforms.dispFactor, speedOut, {
value: 0,
ease: easing
});
});
} else{
new_parent.addEventListener("mouseenter", function(e) {
e.preventDefault();
TweenMax.to(mat.uniforms.dispFactor, speedIn, {
value: 1,
ease: easing
});
});
new_parent.addEventListener("mouseleave", function(e) {
e.preventDefault();
TweenMax.to(mat.uniforms.dispFactor, speedOut, {
value: 0,
ease: easing
});
});
}
window.addEventListener("resize", function() {
var calculated_width = new_parent.offsetWidth;
var calculated_height = ( new_parent.offsetWidth / aspect_ratio_w * aspect_ratio_h );
if( new_parent.offsetHeight >= calculated_height ) {
calculated_height = new_parent.offsetHeight;
calculated_width = ( new_parent.offsetHeight / aspect_ratio_h * aspect_ratio_w );
}
if( calculated_height >= $(window).height() ) {
renderer.setSize( calculated_width, calculated_height, false);
} else {
renderer.setSize( calculated_width, calculated_height);
}
});
};
if (userHover) {
addEvents();
}
this.next = function(){
TweenMax.to(mat.uniforms.dispFactor, speedIn, {
value: 1,
ease: easing
});
};
this.previous = function(){
TweenMax.to(mat.uniforms.dispFactor, speedOut, {
value: 0,
ease: easing
});
};
var animate = function() {
requestAnimationFrame(animate);
renderer.render(scene, camera);
};
animate();
};
})(jQuery);