vanillafocus VS SanKEY.js

Compare vanillafocus vs SanKEY.js and see what are their differences.

SurveyJS - Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App
With SurveyJS form UI libraries, you can build and style forms in a fully-integrated drag & drop form builder, render them in your JS app, and store form submission data in any backend, inc. PHP, ASP.NET Core, and Node.js.
surveyjs.io
featured
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
vanillafocus SanKEY.js
1 1
5 15
- -
0.0 10.0
about 3 years ago over 1 year ago
JavaScript JavaScript
MIT License GNU General Public License v3.0 only
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

vanillafocus

Posts with mentions or reviews of vanillafocus. We have used some of these posts to build our list of alternatives and similar projects.
  • If you know jQuery Focuspoint you will like Vanilla Focus
    1 project | dev.to | 24 Feb 2021
    /** * vanillafocus; version: 1.0.0 * Author: https://simon-koehler.com/en * Source: https://github.com/koehlersimon/vanillafocus * Copyright (c) 2020 S.Köhler; MIT License */ ( function( root, factory ) { var pln = 'vanillafocus'; if (typeof define === 'function' && define.amd) { define([],factory(pln)); } else if (typeof exports === 'object' ) { module.exports = factory(pln); } else { root[pln] = factory(pln); } }( this, function(pln) { 'use strict'; var defaults = { reCalcOnWindowResize: true, throttleDuration: 17 }; /** * @param {Object} defaults * @param {Object} options */ var extend = function( target, options ) { var prop, extended = {}; for ( prop in defaults ) { if ( Object.prototype.hasOwnProperty.call( defaults, prop ) ) { extended[ prop ] = defaults[ prop ]; } } for ( prop in options ) { if ( Object.prototype.hasOwnProperty.call( options, prop ) ) { extended[ prop ] = options[ prop ]; } } return extended; }; /** * @param {Object} options * @constructor */ function Plugin( options ) { this.options = extend( defaults, options ); this.init(); } /** * @public * @constructor */ Plugin.prototype = { init: function() { var selectors = document.querySelectorAll( this.options.selector ); selectors.forEach((el, i) => { var fp = focusPoint(el,this.options); if (this.options.reCalcOnWindowResize) fp.windowOn(); }); }, adjustFocus: function() { var selectors = document.querySelectorAll( this.options.selector ); selectors.forEach((el, i) => { adjustFocus(el); }); } }; var setupContainer = function(focusElement) { let imageSrc = focusElement.querySelector('img').getAttribute('src'); focusElement.setAttribute('data-image-src', imageSrc); resolveImageSize(imageSrc, function(err, dim) { focusElement.setAttribute('data-image-w', dim.width); focusElement.setAttribute('data-image-h', dim.height); adjustFocus(focusElement); }); }; var resolveImageSize = function(src, cb) { let image = document.createElement('img'); image.src = src; image.addEventListener('load',function(e){ cb(null, { width: e.target.width, height: e.target.height }); }); }; var throttle = function(fn, ms) { var isRunning = false; return function() { var args = Array.prototype.slice.call(arguments, 0); if (isRunning) return false; isRunning = true; setTimeout(function() { isRunning = false; fn.apply(null, args); }, ms); }; }; var calcShift = function(conToImageRatio, size, imageSize, focusSize, toMinus) { var center = Math.floor(size / 2); var focusFactor = (focusSize + 1) / 2; var scaledImage = Math.floor(imageSize / conToImageRatio); var focus = Math.floor(focusFactor * scaledImage); if (toMinus) focus = scaledImage - focus; var focusOffset = focus - center; var remainder = scaledImage - focus; var containerRemainder = size - center; if (remainder < containerRemainder) focusOffset -= containerRemainder - remainder; if (focusOffset < 0) focusOffset = 0; return (focusOffset * -100 / size) + '%'; }; var adjustFocus = function(focusElement) { var imageW = focusElement.getAttribute('data-image-w'); var imageH = focusElement.getAttribute('data-image-h'); var imageSrc = focusElement.getAttribute('data-image-src'); if (!imageW || !imageH || !imageSrc) { return setupContainer(focusElement); } var containerW = focusElement.offsetWidth; var containerH = focusElement.offsetHeight; var focusX = parseFloat(focusElement.getAttribute('data-focus-x')); var focusY = parseFloat(focusElement.getAttribute('data-focus-y')); var image = focusElement.querySelector('img'); var hShift = 0; var vShift = 0; if (!(containerW > 0 && containerH > 0 && imageW > 0 && imageH > 0)) { return false; } var wR = imageW / containerW; var hR = imageH / containerH; image.style.maxWidth = ''; image.style.maxHeight = ''; if (imageW > containerW && imageH > containerH) { if((wR > hR)){ image.style.maxHeight = '100%'; } else{ image.style.maxWidth = '100%'; } } if (wR > hR) { hShift = calcShift(hR, containerW, imageW, focusX); } else if (wR < hR) { vShift = calcShift(wR, containerH, imageH, focusY, true); } image.style.top = vShift; image.style.left = hShift; }; var focusPoint = function(el, options) { var thrAdjustFocus = options.throttleDuration ? throttle(function(){adjustFocus(el);}, options.throttleDuration) : function(){adjustFocus(el);}; var isListening = false; adjustFocus(el); return { adjustFocus: function() { return adjustFocus(el); }, windowOn: function() { if (isListening) return; window.addEventListener('resize',thrAdjustFocus); return isListening = true; }, windowOff: function() { if (!isListening) return; window.removeEventListener('resize',thrAdjustFocus); isListening = false; return true; } }; }; return Plugin; } ) );

SanKEY.js

Posts with mentions or reviews of SanKEY.js. We have used some of these posts to build our list of alternatives and similar projects.

What are some alternatives?

When comparing vanillafocus and SanKEY.js you can also consider the following projects:

shariff - 👮 Shariff enables website users to share their favorite content without compromising their privacy.

ElementsJS - A lightweight DOM Manipulation library for VanillaJS

Stackoverflow-Clone - Clone project of a famous Q/A website for developers which is stackoverflow built using MySQL-Express-React-Node :globe_with_meridians: [Moved to: https://github.com/Mayank0255/Stackoverflow-Clone-Frontend]

ohayo - A free, fast, public domain data science studio

SaltGUI - A web interface for managing SaltStack based infrastructure.

cami.js - Cami.js is a simple yet powerful toolkit for interactive islands in web applications. No build step required.

simple-react-crm - A simple CRM I made using ReactJS.

DML - An Object Oriented Web Programming Framework

DreamForgerJS - Interactive Fiction JS library

timeline-sankey - A project to visualize time range series data using the Sankey diagram.

moovie.js - Movie focused HTML5 Player

SpeedrunJS - Speedrun.JS is a fast and beginner-friendly frontend tool for creating websites and user interfaces.