Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove broken link from introduction #349

Open
wants to merge 1 commit into
base: gh-pages
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion posts/_posts/2019-8-31-fabric-intro-part-1new.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Let's take a closer look!

### Why fabric? {#why_fabric}

[Canvas](http://www.whatwg.org/specs/web-apps/current-work/multipage/the-canvas-element.html) allows us to create some [absolutely](http://net.tutsplus.com/articles/web-roundups/21-ridiculously-impressive-html5-canvas-experiments/) <a href="http://speckyboy.com/2011/12/07/20-amazing-implementations-of-html5-canvas/">amazing</a> <a href="http://artatm.com/2012/01/23-truly-amazing-and-unbelievable-html5-canvas-and-javascript-experiments/">graphics</a> on the web these days. But the API it provides is <a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/the-canvas-element.html#2dcontext">disappointingly low-level</a>. It's one thing if we simply want to draw few basic shapes on canvas and forget about them. But as soon as there's need for any kind of interaction, change of picture at any point, or drawing of more complex shapes, situtation changes dramatically.
[Canvas](http://www.whatwg.org/specs/web-apps/current-work/multipage/the-canvas-element.html) allows us to create some [absolutely](http://net.tutsplus.com/articles/web-roundups/21-ridiculously-impressive-html5-canvas-experiments/) <a href="http://speckyboy.com/2011/12/07/20-amazing-implementations-of-html5-canvas/">amazing graphics</a> on the web these days. But the API it provides is <a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/the-canvas-element.html#2dcontext">disappointingly low-level</a>. It's one thing if we simply want to draw few basic shapes on canvas and forget about them. But as soon as there's need for any kind of interaction, change of picture at any point, or drawing of more complex shapes, situtation changes dramatically.

Fabric aims to solve this problem.

Expand Down