"use strict"; (function (factory) { if (typeof Benchmark !== "undefined") { factory(Benchmark); } else { factory(require("benchmark")); } })(function (Benchmark) { var suite = new Benchmark.Suite; suite.add("", function () { Drag and Drop Interaction Ideas | Bottom Slide
Previous Demo Back to the Codrops Article

Drag and Drop Interaction Ideas Inspiration for drag and drop interactions for the modern UI

}); suite.on("cycle", function (evt) { console.log(" " + evt); }); suite.on("complete", function (evt) { var results = evt.currentTarget.sort(function (a, b) { return b.hz - a.hz; }); results.forEach(function (item) { console.log(" " + item); }); }); console.log("Untitled benchmark"); console.log(new Array(30).join("-")); suite.run(); });