New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@egstad/marquee

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@egstad/marquee - npm Package Compare versions

Comparing version 2.5.0 to 2.6.2

index.d.ts

2

index.js

@@ -1,3 +0,3 @@

"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.default=void 0;function _typeof(a){return _typeof="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(a){return typeof a}:function(a){return a&&"function"==typeof Symbol&&a.constructor===Symbol&&a!==Symbol.prototype?"symbol":typeof a},_typeof(a)}function _classCallCheck(a,b){if(!(a instanceof b))throw new TypeError("Cannot call a class as a function")}function _defineProperties(a,b){for(var c,d=0;d<b.length;d++)c=b[d],c.enumerable=c.enumerable||!1,c.configurable=!0,"value"in c&&(c.writable=!0),Object.defineProperty(a,c.key,c)}function _createClass(a,b,c){return b&&_defineProperties(a.prototype,b),c&&_defineProperties(a,c),a}var Marquee=/*#__PURE__*/function(){function a(b){// marquee el
"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.default=void 0;function _typeof(a){"@babel/helpers - typeof";return _typeof="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(a){return typeof a}:function(a){return a&&"function"==typeof Symbol&&a.constructor===Symbol&&a!==Symbol.prototype?"symbol":typeof a},_typeof(a)}function _classCallCheck(a,b){if(!(a instanceof b))throw new TypeError("Cannot call a class as a function")}function _defineProperties(a,b){for(var c,d=0;d<b.length;d++)c=b[d],c.enumerable=c.enumerable||!1,c.configurable=!0,"value"in c&&(c.writable=!0),Object.defineProperty(a,c.key,c)}function _createClass(a,b,c){return b&&_defineProperties(a.prototype,b),c&&_defineProperties(a,c),a}var Marquee=/*#__PURE__*/function(){function a(b){// marquee el
if(_classCallCheck(this,a),"object"===_typeof(b))this.el=b;else if("string"==typeof b)this.el=document.querySelector(b);else throw new TypeError("Marquee accepts either a HTML Element (object) or a class/id to query (string).");// marquee content
this.sign=this.el.children[0],this.RAF=null,this.offset=this.el.offsetWidth,this.speed=this.el.dataset.speed||1,this.observerOptions={rootMargin:"0px 0px",threshold:0},this.observer=null,this.styleElements(),this.init()}return _createClass(a,[{key:"init",value:function init(){this.observerInit(),this.observer.observe(this.sign),this.draw()}},{key:"styleElements",value:function styleElements(){this.el.style.display="flex",this.sign.style.display="inline-flex"}},{key:"draw",value:function draw(){var a=this,b=function(){a.RAF=requestAnimationFrame(b),a.offset-=a.speed,a.sign.style.transform="translate3d(".concat(a.offset,"px, 0, 0)")};requestAnimationFrame(b)}},{key:"stop",value:function stop(){cancelAnimationFrame(this.RAF)}},{key:"reset",value:function reset(){this.offset=this.el.offsetWidth,this.sign.style.transform="translate3d(".concat(this.offset,"px, 0, 0)")}},{key:"observerInit",value:function observerInit(){var a=this;this.observer=new IntersectionObserver(function(b){b.forEach(function(b){0===b.intersectionRatio&&a.reset()})},this.observerOptions)}},{key:"destroy",value:function destroy(){this.stop(),this.observer.unobserve(this.sign)}}]),a}();exports.default=Marquee;
{
"name": "@egstad/marquee",
"version": "2.5.0",
"version": "2.6.2",
"description": "A lightweight Javascript Marquee that uses RequestAnimationFrame and CSS Transforms",

@@ -16,10 +16,10 @@ "license": "MIT",

"devDependencies": {
"@babel/cli": "^7.6.2",
"@babel/core": "^7.6.2",
"@babel/preset-env": "^7.6.2",
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"babel-preset-minify": "^0.5.1"
},
"dependencies": {
"@babel/polyfill": "^7.6.0"
"@babel/polyfill": "^7.11.5"
}
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc