site-accueil-insa/assets/scripts/photosScript.js

262 lines
7 KiB
JavaScript
Raw Normal View History

let showcase = $("#img-big");
let showcaseButton = $("#photo-buttons");
let showcaseLink = $("#img_big_link");
let showcaseDownload = $("#img_big_download");
let photoOverlay = $("#photo-overlay");
let headerTop = $("#header-top");
let sideNav = $("#menuSidenav");
let loading = $("#loading");
var move_photo = false;
var grab_offsetX = 0;
var grab_offsetY = 0;
var idle_time = 0;
var scaling = false;
$(document).ready(
function () {
showcase.bind("mousewheel", function(event, delta) {
let min_width = $(window).width() / 5;
let min_height = $(window).height() / 5;
let max_width = $(window).width() * 5;
let max_height = $(window).height() * 5;
let scale = 150 / 100;
if (delta < 0)
scale = 1/scale;
let cursorY = event.pageY - $(window).scrollTop();
let offsetX = event.pageX - (showcase.position().left + showcase.width()/2);
let offsetY = cursorY - (showcase.position().top + showcase.height()/2);
let new_width = showcase.width() * scale;
let new_height = showcase.height() * scale;
if (new_width > max_width || new_width < min_width)
new_width = 0;
if (new_height > max_height || new_height < min_height)
new_height = 0;
if (new_width !== 0 && new_height !== 0){
let new_left = event.pageX - (offsetX * scale);
let new_top = cursorY - (offsetY * scale);
showcase.width(new_width);
showcase.height(new_height);
if (new_height > $(window).height() || new_width > $(window).width()){
showcase.css('left', new_left +'px');
showcase.css('top', new_top +'px');
showcase.css('cursor', 'move');
}
else{
showcase.css('left', $(window).width()/2 +'px');
showcase.css('top', $(window).height()/2 +'px');
showcase.css('cursor', 'default');
}
}
return false;
});
}
);
2018-03-25 14:19:53 +02:00
$(document).mousemove(function () {
idle_time = 0;
});
showcase.mousemove(function(event){
if (showcase.height() > $(window).height() || showcase.width() > $(window).width) {
showcase.css('cursor', 'move');
if (move_photo){
let cursorY = event.pageY - $(window).scrollTop();
let offsetX = event.pageX - (showcase.position().left + showcase.width()/2);
let offsetY = cursorY - (showcase.position().top + showcase.height()/2);
let new_left = showcase.position().left + showcase.width()/2 + offsetX - grab_offsetX;
let new_top = showcase.position().top + showcase.height()/2 + offsetY - grab_offsetY;
showcase.css('left', new_left +'px');
showcase.css('top', new_top +'px');
}
}
else{
showcase.css('cursor', 'default');
}
});
showcase.mousedown(function(event){
move_photo = true;
let cursorY = event.pageY - $(window).scrollTop();
grab_offsetX = event.pageX - (showcase.position().left + showcase.width()/2);
grab_offsetY = cursorY - (showcase.position().top + showcase.height()/2);
console.log("down");
});
showcase.mouseup(function(){
move_photo = false;
console.log("up");
});
showcase.mouseleave(function(){
move_photo = false;
console.log("up");
});
/*
* Display selected image in showcase
* When clicked, display image in full size
*/
2018-03-25 14:19:53 +02:00
function displayBig(elem) {
changeImage($(elem).attr('src'));
hideTopBar();
2018-04-21 15:20:18 +02:00
disableFullscreen();
photoOverlay.fadeIn(500);
2018-03-25 13:22:28 +02:00
}
2018-03-25 14:19:53 +02:00
function getSourceFromThumbnail(source) {
return source.replace("photos_thumb/", "photos/");
}
/*
* Hide showcase image
*/
2018-03-25 13:22:28 +02:00
function closeBig() {
showTopBar();
2018-04-21 15:20:18 +02:00
disableFullscreen();
photoOverlay.fadeOut(500);
2018-03-25 13:22:28 +02:00
}
2018-03-25 14:19:53 +02:00
2018-04-21 15:20:18 +02:00
function enableFullscreen() {
showcaseButton.fadeOut(500);
}
function disableFullscreen() {
showcaseButton.fadeIn(500);
}
function hideTopBar() {
headerTop.fadeOut(500);
sideNav.fadeOut(500);
}
function showTopBar() {
2018-04-21 15:20:18 +02:00
headerTop.fadeIn(500);
sideNav.fadeIn(500);
}
function is_fullscreen(){
return showcaseButton.css("display") === "none";
}
$(document).ready(function () {
document.getElementById("photos_title").scrollIntoView();
showcase.on('dragstart', function(event) { event.preventDefault(); }); // Stop image drag out of page
setInterval(timerIncrement, 100);
});
function timerIncrement() {
idle_time = idle_time+ 1;
if (idle_time > 10 && !is_fullscreen()) { // 1 second
enableFullscreen();
} else if (idle_time <= 10 && is_fullscreen()){
disableFullscreen();
}
}
2018-04-21 15:20:18 +02:00
/*
* Control images with keyboard arrows
*/
$(document).keydown(function (e) {
switch (e.which) {
2018-04-21 15:20:18 +02:00
case 37: // left
displayNext(-1);
break;
case 39: // right
displayNext(1);
break;
default:
return; // exit this handler for other keys
2018-04-21 15:20:18 +02:00
}
e.preventDefault(); // prevent the default action (scroll / move caret)
});
/*
* Control images with swipes
*/
var img = document.querySelector('#photo_overlay');
// Create a manager to manager the element
var manager = new Hammer.Manager(img);
// Create a recognizer
var Swipe = new Hammer.Swipe();
// Add the recognizer to the manager
manager.add(Swipe);
// Subscribe to the swipe event
manager.on('swipe', function (e) {
var direction = e.offsetDirection;
if (direction === 4) { // right
displayNext(-1);
} else if (direction === 2) { // left
displayNext(1);
}
});
/*
* Display next/last image in showcase. When reaching end/start, loop back to start/end
*/
2018-03-25 13:22:28 +02:00
function displayNext(direction) {
var currentSrc = showcase.attr('src');
var photos = document.getElementsByClassName("photo");
var current = 0;
for (var i = 0; i < photos.length; i++) {
if (getSourceFromThumbnail($(photos[i]).attr('src')) === currentSrc) {
2018-03-25 13:22:28 +02:00
current = i;
}
}
var next = current + direction;
var nextId = "";
if (direction > 0) {
nextId = "#photo-0";
} else {
nextId = "#photo-" + (photos.length - 1);
}
2018-03-25 14:19:53 +02:00
if (document.getElementById("photo-" + next) != null) {
2018-03-25 13:22:28 +02:00
nextId = "#photo-" + next;
}
var nextSrc = $(nextId).attr('src');
changeImage(nextSrc);
}
/*
* Change image source, link and download
*/
function changeImage(thumb) {
2018-04-23 12:04:40 +02:00
displayLoading();
showcase.on('load', function () {
2018-04-23 12:04:40 +02:00
hideLoading();
});
var source = getSourceFromThumbnail(thumb);
showcase.attr("src", source);
showcase.css({
width: 'auto',
height: '90%'
});
showcase.css('left', $(window).width()/2 +'px');
showcase.css('top', $(window).height()/2 +'px');
showcaseLink.attr("href", source);
showcaseDownload.attr("href", source);
2018-03-25 13:22:28 +02:00
}
2018-04-23 12:04:40 +02:00
function displayLoading() {
loading.show();
}
function hideLoading() {
loading.fadeOut(200);
}