I want to make a page with Click and Hold event effect, like http://andeinerseite.video/ or http://2016.makemepulse.com/, I\'m interested in what framework uses to create th
With plain javascript you can do something like this:
selector.addEventListener('mousedown', function(event) {
// simulating hold event
setTimeout(function() {
// You are now in a hold state, you can do whatever you like!
}, 500);
});
You can tweak the 500ms value to any timespan fits your needs.