konva/README.md

190 lines
7.3 KiB
Markdown
Raw Normal View History

2018-03-01 13:49:50 +08:00
<p align="center">
2021-05-28 21:18:25 +08:00
<img src="https://konvajs.org/android-chrome-192x192.png" alt="Konva logo" height="180" />
2018-03-01 13:49:50 +08:00
</p>
2015-11-07 00:26:21 +08:00
2018-03-01 13:49:50 +08:00
<h1 align="center">Konva</h1>
2015-01-23 14:05:11 +08:00
2021-05-05 22:19:24 +08:00
[![Financial Contributors on Open Collective](https://opencollective.com/konva/all/badge.svg?label=financial+contributors)](https://opencollective.com/konva)
[![npm version](https://badge.fury.io/js/konva.svg)](http://badge.fury.io/js/konva)
2021-05-06 03:50:15 +08:00
[![Build Status](https://github.com/konvajs/konva/actions/workflows/test-browser.yml/badge.svg)](https://github.com/konvajs/konva/actions/workflows/test-browser.ym) [![CDNJS version](https://img.shields.io/cdnjs/v/konva.svg)](https://cdnjs.com/libraries/konva)
2015-01-09 21:08:35 +08:00
2018-03-01 13:49:50 +08:00
Konva is an HTML5 Canvas JavaScript framework that enables high performance animations, transitions, node nesting, layering, filtering, caching, event handling for desktop and mobile applications, and much more.
2015-01-09 20:51:36 +08:00
You can draw things onto the stage, add event listeners to them, move them, scale them, and rotate them independently from other shapes to support high performance animations, even if your application uses thousands of shapes. Served hot with a side of awesomeness.
2015-01-27 15:12:36 +08:00
This repository began as a GitHub fork of [ericdrowell/KineticJS](https://github.com/ericdrowell/KineticJS).
2015-01-23 14:05:11 +08:00
2021-05-05 22:19:24 +08:00
- **Visit:** The [Home Page](http://konvajs.org/) and follow on [Twitter](https://twitter.com/lavrton)
- **Discover:** [Tutorials](http://konvajs.org/docs), [API Documentation](http://konvajs.org/api)
2021-05-05 22:54:03 +08:00
- **Help:** [StackOverflow](http://stackoverflow.com/questions/tagged/konvajs), [Discord Chat](https://discord.gg/8FqZwVT)
2015-01-09 20:51:36 +08:00
2015-11-07 00:26:21 +08:00
# Quick Look
```html
2021-05-22 07:20:52 +08:00
<script src="https://unpkg.com/konva@8/konva.min.js"></script>
2015-11-07 00:26:21 +08:00
<div id="container"></div>
<script>
2021-05-05 22:19:24 +08:00
var stage = new Konva.Stage({
container: 'container',
width: window.innerWidth,
height: window.innerHeight,
});
// add canvas element
var layer = new Konva.Layer();
stage.add(layer);
// create shape
var box = new Konva.Rect({
x: 50,
y: 50,
width: 100,
height: 50,
fill: '#00D2FF',
stroke: 'black',
strokeWidth: 4,
draggable: true,
});
layer.add(box);
// add cursor styling
box.on('mouseover', function () {
document.body.style.cursor = 'pointer';
});
box.on('mouseout', function () {
document.body.style.cursor = 'default';
});
2015-11-07 00:26:21 +08:00
</script>
```
2019-11-13 03:38:36 +08:00
# Browsers support
Konva works in all modern mobile and desktop browsers. A browser need to be capable to run javascript code from ES2015 spec. For older browsers you may need polyfills for missing functions.
2020-09-14 22:47:46 +08:00
At the current moment `Konva` doesn't work in IE11 directly. To make it work you just need to provide some polyfills such as `Array.prototype.find`, `String.prototype.trimLeft`, `String.prototype.trimRight`, `Array.from`.
2019-11-13 03:38:36 +08:00
# Loading and installing Konva
2014-05-05 19:00:31 +08:00
2016-01-02 19:48:26 +08:00
Konva supports UMD loading. So you can use all possible variants to load the framework into your project:
2014-05-05 19:00:31 +08:00
2017-03-24 22:09:38 +08:00
### 1 Load Konva via classical `<script>` tag:
```html
2021-05-22 07:20:52 +08:00
<script src="https://unpkg.com/konva@8/konva.min.js"></script>
```
2021-05-22 07:20:52 +08:00
You can also use a CDN: [https://unpkg.com/konva@8/konva.min.js](https://unpkg.com/konva@8/konva.min.js)
2020-02-25 09:39:32 +08:00
### 2 Install with npm:
```bash
npm install konva --save
```
```javascript
2020-02-25 09:39:32 +08:00
// The modern way (e.g. an ES6-style import for webpack, parcel)
import Konva from 'konva';
2020-02-25 09:39:32 +08:00
```
#### Typescript usage
2016-08-14 13:58:36 +08:00
2021-05-22 07:20:52 +08:00
Add DOM definitions into your `tsconfig.json`:
2020-02-25 09:39:32 +08:00
```
{
"compilerOptions": {
"lib": [
"es6",
"dom"
]
}
}
```
2020-02-25 09:39:32 +08:00
### 3 Minimal bundle
2016-01-02 19:48:26 +08:00
```javascript
2019-02-27 21:11:17 +08:00
import Konva from 'konva/lib/Core';
2019-11-13 04:35:19 +08:00
// Now you have a Konva object with Stage, Layer, FastLayer, Group, Shape and some additional utils function.
2019-02-27 21:11:17 +08:00
// Also core currently already have support for drag&drop and animations.
// BUT there are no shapes (rect, circle, etc), no filters.
2016-01-02 19:48:26 +08:00
// but you can simply add anything you need:
2019-02-27 21:11:17 +08:00
import { Rect } from 'konva/lib/shapes/Rect';
// importing a shape will automatically inject it into Konva object
var rect1 = new Rect();
// or:
var shape = new Konva.Rect();
// for filters you can use this:
import { Blur } from 'konva/lib/filters/Blur';
```
2020-02-25 09:39:32 +08:00
### 4 NodeJS env
2021-05-27 23:12:44 +08:00
In order to run `konva` in nodejs environment you also need to install `canvas` package manually. Konva will use it for 2d canvas API.
2014-05-05 19:00:31 +08:00
2017-10-11 16:27:09 +08:00
```bash
2021-05-27 23:12:44 +08:00
npm install konva canvas
2017-10-11 16:27:09 +08:00
```
2014-05-05 19:00:31 +08:00
2017-10-11 16:27:09 +08:00
Then in you javascript file you will need to use
2014-05-05 19:00:31 +08:00
2019-02-11 23:55:06 +08:00
# Backers
2020-07-17 05:02:34 +08:00
- [myposter GmbH](https://www.myposter.de/)
- [queue.gg](https://queue.gg/)
2019-02-11 23:55:06 +08:00
2017-03-24 22:09:38 +08:00
# Change log
2015-01-09 20:51:36 +08:00
2015-01-27 13:34:30 +08:00
See [CHANGELOG.md](https://github.com/konvajs/konva/blob/master/CHANGELOG.md).
2015-01-09 20:51:36 +08:00
2017-03-24 22:09:38 +08:00
## Building the Konva Framework
2019-01-19 23:13:03 +08:00
To make a full build run `npm run build`. The command will compile all typescript files, combine then into one bundle and run minifier.
2017-03-24 22:09:38 +08:00
## Testing
2015-01-27 13:34:30 +08:00
Konva uses Mocha for testing.
2014-02-27 18:46:15 +08:00
2021-05-05 22:19:24 +08:00
- If you need run test only one time run `npm run test`.
- While developing it is easy to use `npm start`. Just run it and go to [http://localhost:8080/test/runner.html](http://localhost:8080/test/runner.html). The watcher will rebuild the bundle on any change.
2013-09-11 12:51:07 +08:00
2015-01-27 13:34:30 +08:00
Konva is covered with hundreds of tests and well over a thousand assertions.
Konva uses TDD (test driven development) which means that every new feature or bug fix is accompanied with at least one new test.
2017-03-24 22:09:38 +08:00
## Generate documentation
2014-02-27 18:46:15 +08:00
2019-01-19 23:13:03 +08:00
Run `npx gulp api` which will build the documentation files and place them in the `api` folder.
2014-02-27 18:46:15 +08:00
2017-03-24 22:09:38 +08:00
# Pull Requests
2018-01-04 12:08:09 +08:00
2015-01-27 13:34:30 +08:00
I'd be happy to review any pull requests that may better the Konva project,
2018-01-04 12:08:09 +08:00
in particular if you have a bug fix, enhancement, or a new shape (see `src/shapes` for examples). Before doing so, please first make sure that all of the tests pass (`gulp lint test`).
## Contributors
### Financial Contributors
Become a financial contributor and help us sustain our community. [[Contribute](https://opencollective.com/konva/contribute)]
#### Individuals
<a href="https://opencollective.com/konva"><img src="https://opencollective.com/konva/individuals.svg?width=890"></a>
#### Organizations
Support this project with your organization. Your logo will show up here with a link to your website. [[Contribute](https://opencollective.com/konva/contribute)]
<a href="https://opencollective.com/konva/organization/0/website"><img src="https://opencollective.com/konva/organization/0/avatar.svg"></a>
<a href="https://opencollective.com/konva/organization/1/website"><img src="https://opencollective.com/konva/organization/1/avatar.svg"></a>
<a href="https://opencollective.com/konva/organization/2/website"><img src="https://opencollective.com/konva/organization/2/avatar.svg"></a>
<a href="https://opencollective.com/konva/organization/3/website"><img src="https://opencollective.com/konva/organization/3/avatar.svg"></a>
<a href="https://opencollective.com/konva/organization/4/website"><img src="https://opencollective.com/konva/organization/4/avatar.svg"></a>
<a href="https://opencollective.com/konva/organization/5/website"><img src="https://opencollective.com/konva/organization/5/avatar.svg"></a>
<a href="https://opencollective.com/konva/organization/6/website"><img src="https://opencollective.com/konva/organization/6/avatar.svg"></a>
<a href="https://opencollective.com/konva/organization/7/website"><img src="https://opencollective.com/konva/organization/7/avatar.svg"></a>
<a href="https://opencollective.com/konva/organization/8/website"><img src="https://opencollective.com/konva/organization/8/avatar.svg"></a>
<a href="https://opencollective.com/konva/organization/9/website"><img src="https://opencollective.com/konva/organization/9/avatar.svg"></a>