Smart Watch

Showcase

Smart Watch

Showcase


Camera Film

Showcase

Camera Film

Showcase


Coffee

Showcase

Coffee

Showcase


Phone

Showcase

Phone

Showcase


Keyboard

Showcase

Keyboard

Showcase


Wrist Watch

Showcase

Wrist Watch

Showcase



const imgContent = document.querySelectorAll(‘.img-content-hover’);
$(function() {
$(“.img-container”).mousemove(function(e) {
for(var i = 0; i < imgContent.length; i++) { x = e.pageX; y = e.pageY; imgContent[i].style.transform = `translate3d(${x}px, ${y}px, 0)`; } }) });