Skip to content

Instantly share code, notes, and snippets.

View Monichre's full-sized avatar
🏠
Working from office

Liam Ellis Monichre

🏠
Working from office
View GitHub Profile
// SNIPPET
{% comment %}
Collection template, used on current_collection.liquid and current_collection.image.liquid
{% endcomment %}
<div class="compare-basket">
<button class="action action--button action--compare"><i class="fa fa-check"></i><span class="action__text">Compare</span></button>
</div>
{% assign current_collection = collections['model-1'] %}
@Monichre
Monichre / multi-touch.js
Created October 31, 2018 21:36
Multi Touch Event Handling
let node;
let rotation = 0;
let gestureStartRotation = 0;
let gestureStartScale = 0;
let scale = 1;
let posX = 0;
let posY = 0;
let startX;
let startY;
var tx = 0;
var ty = 0;
var scale = 1;
document.addEventListener('wheel', function (e) {
e.preventDefault();
if (e.ctrlKey) {
var s = Math.exp(-e.deltaY / 100);
scale *= s;
console.log("delta = " + e.deltaY);
@Monichre
Monichre / browser-utility.js
Created October 30, 2018 14:39
# Browser Utility File This is a little package I've been managing with Bit in an effort to standardize some client side browser issues I continually face
import _ from "lodash"
class TheBrowser {
constructor () {
this.window = {}
this.status = false
this.isPhone = false
this.isTablet = false
this.isMediumTablet = false
this.isLargeTablet = false