├── .gitignore ├── .nojekyll ├── .travis.yml ├── README.md ├── gulpfile.js ├── index.html ├── package.json ├── public ├── api.html ├── css │ └── main.css ├── examples.html ├── examples │ ├── animation.html │ ├── bounding_box.html │ ├── clip_path.html │ ├── glitched_text.html │ ├── hello_world.html │ └── particles.html ├── img │ ├── examples │ │ ├── animation.png │ │ ├── bounding_box.png │ │ ├── clip_path.png │ │ ├── glitched_text.png │ │ ├── hello_world.png │ │ └── particles.png │ └── logo.png ├── index.html └── lib │ ├── css │ └── bootstrap.min.css │ └── js │ ├── bootstrap.min.js │ ├── jquery.min.js │ ├── stats.min.js │ ├── zrender-alpha.js │ └── zrender.min.js └── src ├── Gemfile ├── _api_zrender ├── 0.dispose.md ├── 0.init.md ├── 0.version.md ├── animatable.md ├── animator.md ├── boundingRect.md ├── color.md ├── displayable._.md ├── displayable.arc.md ├── displayable.bezierCurve.md ├── displayable.circle.md ├── displayable.compoundPath.md ├── displayable.droplet.md ├── displayable.ellipse.md ├── displayable.heart.md ├── displayable.image.md ├── displayable.isogon.md ├── displayable.line.md ├── displayable.path.md ├── displayable.polygon.md ├── displayable.polyline.md ├── displayable.rect.md ├── displayable.rose.md ├── displayable.sector.md ├── displayable.star.md ├── displayable.text.md ├── displayable.trochoid.md ├── element.md ├── eventful.md ├── gradient.md ├── group.md ├── linearGradient.md ├── matrix.md ├── path.md ├── pattern.md ├── radialGradient.md ├── transformable.md ├── util._.md ├── util.bind.md ├── util.clone.md ├── util.createCanvas.md ├── util.curry.md ├── util.defaults.md ├── util.each.md ├── util.extend.md ├── util.filter.md ├── util.find.md ├── util.getContext.md ├── util.indexOf.md ├── util.inherits.md ├── util.isArray.md ├── util.isFunction.md ├── util.isObject.md ├── util.isString.md ├── util.map.md ├── util.merge.md ├── util.reduce.md ├── util.slice.md └── vector.md ├── _api_zrender_instance ├── add.md ├── addHover.md ├── animation.md ├── clear.md ├── clearAnimation.md ├── clearHover.md ├── configLayer.md ├── dispose.md ├── dom.md ├── flush.md ├── getHeight.md ├── getWidth.md ├── id.md ├── off.md ├── on.md ├── refresh.md ├── refreshHover.md ├── refreshHoverImmediately.md ├── refreshImmediately.md ├── remove.md ├── removeHover.md ├── resize.md └── trigger.md ├── _config.yml ├── _config_release.yml ├── _examples ├── animation.md ├── bounding_box.md ├── clip_path.md ├── glitched_text.md ├── hello_world.md └── particles.md ├── _includes ├── example_sidebar.html ├── footer.html └── header.html ├── _layouts ├── api.html ├── example_content.html ├── examples.html └── tutorial.html ├── api.md ├── css ├── _code.scss ├── _content.scss ├── _general.scss ├── _nav.scss ├── _page.api.scss ├── _page.example.scss ├── _sidebar.scss ├── _variables.scss └── main.scss ├── examples.md ├── img ├── examples │ ├── animation.png │ ├── bounding_box.png │ ├── clip_path.png │ ├── glitched_text.png │ ├── hello_world.png │ └── particles.png └── logo.png └── index.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/.gitignore -------------------------------------------------------------------------------- /.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/README.md -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/gulpfile.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/package.json -------------------------------------------------------------------------------- /public/api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/public/api.html -------------------------------------------------------------------------------- /public/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/public/css/main.css -------------------------------------------------------------------------------- /public/examples.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/public/examples.html -------------------------------------------------------------------------------- /public/examples/animation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/public/examples/animation.html -------------------------------------------------------------------------------- /public/examples/bounding_box.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/public/examples/bounding_box.html -------------------------------------------------------------------------------- /public/examples/clip_path.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/public/examples/clip_path.html -------------------------------------------------------------------------------- /public/examples/glitched_text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/public/examples/glitched_text.html -------------------------------------------------------------------------------- /public/examples/hello_world.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/public/examples/hello_world.html -------------------------------------------------------------------------------- /public/examples/particles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/public/examples/particles.html -------------------------------------------------------------------------------- /public/img/examples/animation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/public/img/examples/animation.png -------------------------------------------------------------------------------- /public/img/examples/bounding_box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/public/img/examples/bounding_box.png -------------------------------------------------------------------------------- /public/img/examples/clip_path.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/public/img/examples/clip_path.png -------------------------------------------------------------------------------- /public/img/examples/glitched_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/public/img/examples/glitched_text.png -------------------------------------------------------------------------------- /public/img/examples/hello_world.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/public/img/examples/hello_world.png -------------------------------------------------------------------------------- /public/img/examples/particles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/public/img/examples/particles.png -------------------------------------------------------------------------------- /public/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/public/img/logo.png -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/public/index.html -------------------------------------------------------------------------------- /public/lib/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/public/lib/css/bootstrap.min.css -------------------------------------------------------------------------------- /public/lib/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/public/lib/js/bootstrap.min.js -------------------------------------------------------------------------------- /public/lib/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/public/lib/js/jquery.min.js -------------------------------------------------------------------------------- /public/lib/js/stats.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/public/lib/js/stats.min.js -------------------------------------------------------------------------------- /public/lib/js/zrender-alpha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/public/lib/js/zrender-alpha.js -------------------------------------------------------------------------------- /public/lib/js/zrender.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/public/lib/js/zrender.min.js -------------------------------------------------------------------------------- /src/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/Gemfile -------------------------------------------------------------------------------- /src/_api_zrender/0.dispose.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/_api_zrender/0.dispose.md -------------------------------------------------------------------------------- /src/_api_zrender/0.init.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/_api_zrender/0.init.md -------------------------------------------------------------------------------- /src/_api_zrender/0.version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/_api_zrender/0.version.md -------------------------------------------------------------------------------- /src/_api_zrender/animatable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/_api_zrender/animatable.md -------------------------------------------------------------------------------- /src/_api_zrender/animator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/_api_zrender/animator.md -------------------------------------------------------------------------------- /src/_api_zrender/boundingRect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/_api_zrender/boundingRect.md -------------------------------------------------------------------------------- /src/_api_zrender/color.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/_api_zrender/color.md -------------------------------------------------------------------------------- /src/_api_zrender/displayable._.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/_api_zrender/displayable._.md -------------------------------------------------------------------------------- /src/_api_zrender/displayable.arc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/_api_zrender/displayable.arc.md -------------------------------------------------------------------------------- /src/_api_zrender/displayable.bezierCurve.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/_api_zrender/displayable.bezierCurve.md -------------------------------------------------------------------------------- /src/_api_zrender/displayable.circle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/_api_zrender/displayable.circle.md -------------------------------------------------------------------------------- /src/_api_zrender/displayable.compoundPath.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/_api_zrender/displayable.compoundPath.md -------------------------------------------------------------------------------- /src/_api_zrender/displayable.droplet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/_api_zrender/displayable.droplet.md -------------------------------------------------------------------------------- /src/_api_zrender/displayable.ellipse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/_api_zrender/displayable.ellipse.md -------------------------------------------------------------------------------- /src/_api_zrender/displayable.heart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/_api_zrender/displayable.heart.md -------------------------------------------------------------------------------- /src/_api_zrender/displayable.image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/_api_zrender/displayable.image.md -------------------------------------------------------------------------------- /src/_api_zrender/displayable.isogon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/_api_zrender/displayable.isogon.md -------------------------------------------------------------------------------- /src/_api_zrender/displayable.line.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/_api_zrender/displayable.line.md -------------------------------------------------------------------------------- /src/_api_zrender/displayable.path.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/_api_zrender/displayable.path.md -------------------------------------------------------------------------------- /src/_api_zrender/displayable.polygon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/_api_zrender/displayable.polygon.md -------------------------------------------------------------------------------- /src/_api_zrender/displayable.polyline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/_api_zrender/displayable.polyline.md -------------------------------------------------------------------------------- /src/_api_zrender/displayable.rect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/_api_zrender/displayable.rect.md -------------------------------------------------------------------------------- /src/_api_zrender/displayable.rose.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/_api_zrender/displayable.rose.md -------------------------------------------------------------------------------- /src/_api_zrender/displayable.sector.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/_api_zrender/displayable.sector.md -------------------------------------------------------------------------------- /src/_api_zrender/displayable.star.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/_api_zrender/displayable.star.md -------------------------------------------------------------------------------- /src/_api_zrender/displayable.text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/_api_zrender/displayable.text.md -------------------------------------------------------------------------------- /src/_api_zrender/displayable.trochoid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/_api_zrender/displayable.trochoid.md -------------------------------------------------------------------------------- /src/_api_zrender/element.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/_api_zrender/element.md -------------------------------------------------------------------------------- /src/_api_zrender/eventful.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/_api_zrender/eventful.md -------------------------------------------------------------------------------- /src/_api_zrender/gradient.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/_api_zrender/gradient.md -------------------------------------------------------------------------------- /src/_api_zrender/group.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/_api_zrender/group.md -------------------------------------------------------------------------------- /src/_api_zrender/linearGradient.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/_api_zrender/linearGradient.md -------------------------------------------------------------------------------- /src/_api_zrender/matrix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/_api_zrender/matrix.md -------------------------------------------------------------------------------- /src/_api_zrender/path.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/_api_zrender/path.md -------------------------------------------------------------------------------- /src/_api_zrender/pattern.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/_api_zrender/pattern.md -------------------------------------------------------------------------------- /src/_api_zrender/radialGradient.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/_api_zrender/radialGradient.md -------------------------------------------------------------------------------- /src/_api_zrender/transformable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/_api_zrender/transformable.md -------------------------------------------------------------------------------- /src/_api_zrender/util._.md: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | 4 | ### zrender.util 5 | 6 | **静态类** 7 | 8 | 常用辅助函数。 9 | -------------------------------------------------------------------------------- /src/_api_zrender/util.bind.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/_api_zrender/util.bind.md -------------------------------------------------------------------------------- /src/_api_zrender/util.clone.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/_api_zrender/util.clone.md -------------------------------------------------------------------------------- /src/_api_zrender/util.createCanvas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/_api_zrender/util.createCanvas.md -------------------------------------------------------------------------------- /src/_api_zrender/util.curry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/_api_zrender/util.curry.md -------------------------------------------------------------------------------- /src/_api_zrender/util.defaults.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/_api_zrender/util.defaults.md -------------------------------------------------------------------------------- /src/_api_zrender/util.each.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/_api_zrender/util.each.md -------------------------------------------------------------------------------- /src/_api_zrender/util.extend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/_api_zrender/util.extend.md -------------------------------------------------------------------------------- /src/_api_zrender/util.filter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/_api_zrender/util.filter.md -------------------------------------------------------------------------------- /src/_api_zrender/util.find.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/_api_zrender/util.find.md -------------------------------------------------------------------------------- /src/_api_zrender/util.getContext.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/_api_zrender/util.getContext.md -------------------------------------------------------------------------------- /src/_api_zrender/util.indexOf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/_api_zrender/util.indexOf.md -------------------------------------------------------------------------------- /src/_api_zrender/util.inherits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/_api_zrender/util.inherits.md -------------------------------------------------------------------------------- /src/_api_zrender/util.isArray.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/_api_zrender/util.isArray.md -------------------------------------------------------------------------------- /src/_api_zrender/util.isFunction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/_api_zrender/util.isFunction.md -------------------------------------------------------------------------------- /src/_api_zrender/util.isObject.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/_api_zrender/util.isObject.md -------------------------------------------------------------------------------- /src/_api_zrender/util.isString.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/_api_zrender/util.isString.md -------------------------------------------------------------------------------- /src/_api_zrender/util.map.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/_api_zrender/util.map.md -------------------------------------------------------------------------------- /src/_api_zrender/util.merge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/_api_zrender/util.merge.md -------------------------------------------------------------------------------- /src/_api_zrender/util.reduce.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/_api_zrender/util.reduce.md -------------------------------------------------------------------------------- /src/_api_zrender/util.slice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/_api_zrender/util.slice.md -------------------------------------------------------------------------------- /src/_api_zrender/vector.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/_api_zrender/vector.md -------------------------------------------------------------------------------- /src/_api_zrender_instance/add.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/_api_zrender_instance/add.md -------------------------------------------------------------------------------- /src/_api_zrender_instance/addHover.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/_api_zrender_instance/addHover.md -------------------------------------------------------------------------------- /src/_api_zrender_instance/animation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/_api_zrender_instance/animation.md -------------------------------------------------------------------------------- /src/_api_zrender_instance/clear.md: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | 4 | ### clear() 5 | 6 | 清除所有对象和画布。 7 | -------------------------------------------------------------------------------- /src/_api_zrender_instance/clearAnimation.md: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | 4 | ### clearAnimation() 5 | 6 | 停止所有动画。 7 | -------------------------------------------------------------------------------- /src/_api_zrender_instance/clearHover.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/_api_zrender_instance/clearHover.md -------------------------------------------------------------------------------- /src/_api_zrender_instance/configLayer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/_api_zrender_instance/configLayer.md -------------------------------------------------------------------------------- /src/_api_zrender_instance/dispose.md: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | 4 | ### dispose() 5 | 6 | 移除自身。当不再需要使用该实例时,调用该方法以释放内存。 7 | -------------------------------------------------------------------------------- /src/_api_zrender_instance/dom.md: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | 4 | ### dom 5 | 6 | 类型:`HTMLDomElement`,绘图容器。 7 | -------------------------------------------------------------------------------- /src/_api_zrender_instance/flush.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/_api_zrender_instance/flush.md -------------------------------------------------------------------------------- /src/_api_zrender_instance/getHeight.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/_api_zrender_instance/getHeight.md -------------------------------------------------------------------------------- /src/_api_zrender_instance/getWidth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/_api_zrender_instance/getWidth.md -------------------------------------------------------------------------------- /src/_api_zrender_instance/id.md: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | 4 | ### id 5 | 6 | 类型:`string`,`zrender` 实例的唯一标识符。 7 | -------------------------------------------------------------------------------- /src/_api_zrender_instance/off.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/_api_zrender_instance/off.md -------------------------------------------------------------------------------- /src/_api_zrender_instance/on.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/_api_zrender_instance/on.md -------------------------------------------------------------------------------- /src/_api_zrender_instance/refresh.md: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | 4 | ### refresh() 5 | 6 | 刷新画布,将在下一个渲染帧的时候被刷新。 7 | -------------------------------------------------------------------------------- /src/_api_zrender_instance/refreshHover.md: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | 4 | ### refreshHover() 5 | 6 | 刷新高亮层,将在下一个渲染帧的时候被刷新。 7 | -------------------------------------------------------------------------------- /src/_api_zrender_instance/refreshHoverImmediately.md: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | 4 | ### refreshHoverImmediately() 5 | 6 | 强制立即刷新高亮层。 7 | -------------------------------------------------------------------------------- /src/_api_zrender_instance/refreshImmediately.md: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | 4 | ### refreshImmediately() 5 | 6 | 强制立即刷新画布。 7 | -------------------------------------------------------------------------------- /src/_api_zrender_instance/remove.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/_api_zrender_instance/remove.md -------------------------------------------------------------------------------- /src/_api_zrender_instance/removeHover.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/_api_zrender_instance/removeHover.md -------------------------------------------------------------------------------- /src/_api_zrender_instance/resize.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/_api_zrender_instance/resize.md -------------------------------------------------------------------------------- /src/_api_zrender_instance/trigger.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/_api_zrender_instance/trigger.md -------------------------------------------------------------------------------- /src/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/_config.yml -------------------------------------------------------------------------------- /src/_config_release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/_config_release.yml -------------------------------------------------------------------------------- /src/_examples/animation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/_examples/animation.md -------------------------------------------------------------------------------- /src/_examples/bounding_box.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/_examples/bounding_box.md -------------------------------------------------------------------------------- /src/_examples/clip_path.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/_examples/clip_path.md -------------------------------------------------------------------------------- /src/_examples/glitched_text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/_examples/glitched_text.md -------------------------------------------------------------------------------- /src/_examples/hello_world.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/_examples/hello_world.md -------------------------------------------------------------------------------- /src/_examples/particles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/_examples/particles.md -------------------------------------------------------------------------------- /src/_includes/example_sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/_includes/example_sidebar.html -------------------------------------------------------------------------------- /src/_includes/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/_includes/footer.html -------------------------------------------------------------------------------- /src/_includes/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/_includes/header.html -------------------------------------------------------------------------------- /src/_layouts/api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/_layouts/api.html -------------------------------------------------------------------------------- /src/_layouts/example_content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/_layouts/example_content.html -------------------------------------------------------------------------------- /src/_layouts/examples.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/_layouts/examples.html -------------------------------------------------------------------------------- /src/_layouts/tutorial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/_layouts/tutorial.html -------------------------------------------------------------------------------- /src/api.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: api 3 | title: ZRender 文档 4 | --- 5 | -------------------------------------------------------------------------------- /src/css/_code.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/css/_code.scss -------------------------------------------------------------------------------- /src/css/_content.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/css/_content.scss -------------------------------------------------------------------------------- /src/css/_general.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/css/_general.scss -------------------------------------------------------------------------------- /src/css/_nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/css/_nav.scss -------------------------------------------------------------------------------- /src/css/_page.api.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/css/_page.api.scss -------------------------------------------------------------------------------- /src/css/_page.example.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/css/_page.example.scss -------------------------------------------------------------------------------- /src/css/_sidebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/css/_sidebar.scss -------------------------------------------------------------------------------- /src/css/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/css/_variables.scss -------------------------------------------------------------------------------- /src/css/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/css/main.scss -------------------------------------------------------------------------------- /src/examples.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: examples 3 | title: ZRender 实例 4 | --- 5 | -------------------------------------------------------------------------------- /src/img/examples/animation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/img/examples/animation.png -------------------------------------------------------------------------------- /src/img/examples/bounding_box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/img/examples/bounding_box.png -------------------------------------------------------------------------------- /src/img/examples/clip_path.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/img/examples/clip_path.png -------------------------------------------------------------------------------- /src/img/examples/glitched_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/img/examples/glitched_text.png -------------------------------------------------------------------------------- /src/img/examples/hello_world.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/img/examples/hello_world.png -------------------------------------------------------------------------------- /src/img/examples/particles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/img/examples/particles.png -------------------------------------------------------------------------------- /src/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/img/logo.png -------------------------------------------------------------------------------- /src/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/zrender-doc/HEAD/src/index.md --------------------------------------------------------------------------------