Hype Animation Frame
Document Methods
4 min
hypeanimationframe version // property with the current version of the extension hypeanimationframe version; description the value of the version property is a string containing the current version of the extension hypeanimationframe stopallanimationframes // stop all running animation frames across the page hypeanimationframe stopallanimationframes(); description this method stops all running hype animation frames across all hype documents on the page hypeanimationframe stopanimationframebyhypedocumentid // stop running animation frame by id 'myticker' in the hype document named 'index' hypeanimationframe stopanimationframebyhypedocumentid('index', 'myticker'); // stop running animation frame by function reference mycallback in the hype document named 'index' hypeanimationframe stopanimationframebyhypedocumentid('index', mycallback); parameter documentid this parameter must be a string determining the document id of your hype document animationframeid the id to of the animation frame you want to stop this id was set while creating the animation frame and if none was given defaults to the callback function as a reference description this method stops a specific hype animation frame for a specific hype document on the page hypeanimationframe stopallanimationframesbyhypedocumentid // stop all running animation frames in the hype document named 'index' hypeanimationframe stopanimationframebyhypedocumentid('index'); parameter documentid this parameter must be a string determining the document id of your hype document description this method stops all running hype animation frames for a specific hype document on the page example