mirror of
https://github.com/janishutz/color-thief.git
synced 2025-11-25 05:44:24 +00:00
127 lines
4.5 KiB
JavaScript
127 lines
4.5 KiB
JavaScript
$(document).ready(function () {
|
|
|
|
// Use lettering.js to generate spans for each letter in the logo.
|
|
// This is used to create the on hover animated rainbow effect.
|
|
$('.logo').lettering();
|
|
|
|
|
|
// ---------------------
|
|
// Color Thief demo code
|
|
// ---------------------
|
|
var imageArray = {images: [
|
|
{'file': 'img/photo1.jpg'},
|
|
{'file': 'img/photo2.jpg'},
|
|
{'file': 'img/photo3.jpg'}
|
|
]};
|
|
|
|
// Render example images
|
|
var examplesHTML = Mustache.to_html($('#image-section-template').html(), imageArray);
|
|
$('#examples').append(examplesHTML);
|
|
|
|
// Event handlers
|
|
$('.run-functions-button').on('click', function(event) {
|
|
var $this = $(this);
|
|
$this.text('...');
|
|
var $imageSection = $this.closest('.image-section');
|
|
var $colorThiefOutput = $imageSection.find('.color-thief-output');
|
|
var $targetimage = $imageSection.find('.target-image');
|
|
showColorsForImage($targetimage, $imageSection);
|
|
});
|
|
|
|
var colorThief = new ColorThief();
|
|
|
|
var PALETTE_COLOR_COUNT = 10;
|
|
|
|
// Run Color Thief functions and display results below image.
|
|
// We also log execution time of functions for display.
|
|
var showColorsForImage = function($image, $imageSection ) {
|
|
var image = $image[0];
|
|
var start = Date.now();
|
|
var color = colorThief.getColor(image);
|
|
var elapsedTimeForGetColor = Date.now() - start;
|
|
var palette = colorThief.getPalette(image, PALETTE_COLOR_COUNT);
|
|
var elapsedTimeForGetPalette = Date.now() - start - elapsedTimeForGetColor;
|
|
|
|
var colorThiefOutput = {
|
|
color: color,
|
|
palette: palette,
|
|
elapsedTimeForGetColor: elapsedTimeForGetColor,
|
|
elapsedTimeForGetPalette: elapsedTimeForGetPalette
|
|
};
|
|
var colorThiefOuputHTML = Mustache.to_html($('#color-thief-output-template').html(), colorThiefOutput);
|
|
$imageSection.find('.run-functions-button').addClass('hide');
|
|
$imageSection.find('.color-thief-output').append(colorThiefOuputHTML).slideDown();
|
|
|
|
// If the color-thief-output div is not in the viewport or cut off, scroll down.
|
|
var windowHeight = $(window).height();
|
|
var currentScrollPosition = $('body').scrollTop()
|
|
var outputOffsetTop = $imageSection.find('.color-thief-output').offset().top
|
|
if ((currentScrollPosition < outputOffsetTop) && (currentScrollPosition + windowHeight - 250 < outputOffsetTop)) {
|
|
$('body').animate({scrollTop: outputOffsetTop - windowHeight + 200 + "px"});
|
|
}
|
|
};
|
|
|
|
// Drag'n'drop demo
|
|
// Thanks to Nathan Spady (http://nspady.com/) who did the bulk of the drag'n'drop work.
|
|
|
|
// Setup the drag and drop behavior if supported
|
|
if (typeof window.FileReader === 'function') {
|
|
$('#drag-drop').show();
|
|
var $dropZone = $('#drop-zone');
|
|
var handleDragEnter = function(event){
|
|
$dropZone.addClass('dragging');
|
|
return false;
|
|
};
|
|
var handleDragLeave = function(event){
|
|
$dropZone.removeClass('dragging');
|
|
return false;
|
|
};
|
|
var handleDragOver = function(event){
|
|
return false;
|
|
};
|
|
var handleDrop = function(event){
|
|
$dropZone.removeClass('dragging');
|
|
handleFiles(event.originalEvent.dataTransfer.files);
|
|
return false;
|
|
};
|
|
$dropZone
|
|
.on('dragenter', handleDragEnter)
|
|
.on('dragleave', handleDragLeave)
|
|
.on('dragover', handleDragOver)
|
|
.on('drop', handleDrop);
|
|
}
|
|
|
|
function handleFiles(files) {
|
|
var $draggedImages = $('#dragged-images');
|
|
var imageType = /image.*/;
|
|
var fileCount = files.length;
|
|
|
|
for (var i = 0; i < fileCount; i++) {
|
|
var file = files[i];
|
|
|
|
if (file.type.match(imageType)) {
|
|
var reader = new FileReader();
|
|
reader.onload = function(event) {
|
|
imageInfo = { images: [
|
|
{'class': 'dropped-image', file: event.target.result}
|
|
]};
|
|
console.log(imageInfo);
|
|
var imageSectionHTML = Mustache.to_html($('#image-section-template').html(), imageInfo);
|
|
$draggedImages.prepend(imageSectionHTML);
|
|
|
|
var $imageSection = $draggedImages.find('.image-section').first();
|
|
var $image = $('.dropped-image .target-image');
|
|
|
|
// Must wait for image to load in DOM, not just load from FileReader
|
|
$image.on('load', function() {
|
|
showColorsForImage($image, $imageSection);
|
|
});
|
|
};
|
|
reader.readAsDataURL(file);
|
|
} else {
|
|
alert('File must be a supported image type.');
|
|
}
|
|
}
|
|
}
|
|
});
|