cache-style

0.0.1 • Public • Published

cache-style

不影响当前页面的情况下,把js、css文件预加载到缓存

Exapmle

//预加载js
cacheStyle('http://xxx.yyy.com/test.js', 
  function(timeOfLoadStyle, url) {
	//如果加载的时间小于1秒,表示文件已存在浏览器缓存,可以使用了
    if (timeOfLoadStyle < 1000) {
    		$.getScript(url);
    }
  }, true);

//预加载css
cacheStyle('http://xxx.yyy.com/test.css', 
  function(timeOfLoadStyle, url) {
	//如果加载的时间小于1秒,表示文件已存在浏览器缓存,可以使用了
    if (timeOfLoadStyle < 1000) {
    		loadCss(url);
    }
  }, true);

Readme

Keywords

Package Sidebar

Install

npm i cache-style

Weekly Downloads

1

Version

0.0.1

License

none

Last publish

Collaborators

  • avwu