0.0.7 • Published 4 years ago

malyan v0.0.7

Weekly downloads
1
License
MIT
Repository
github
Last release
4 years ago

Malyan

NPM package NPM downloads Build Status Coverage Status MIT License

JavaScript Canvas 2D library

Malyan is a lightweight canvas 2D library that makes it easy to work with HTML5 canvas element.

Benefit from interactive object model,Malyan allows you to easily create simple geometrical shapes like rectangles, circles and other polygons or more complex shapes made up of many paths in <canvas> HTML element. It also allows you to manipulate the size, position and rotation of these objects. It’s also possible to change some of the attributes of these objects such as their color, opacity, etc.

Malyan also provides an extensive event system, starting from low-level "mouse" events (click, mousedrag, mouseEnter, etc) to high-level objects ones (object:mousemove, object:mousedrag).

HomeExamplesDocumentation中文文档Help

Usage

  // Direct Download
  <script src="js/malyan.min.js"></script>
  • Unpkg.com provides NPM-based CDN links. The above link will always point to the latest release on NPM.
  // CDN
  <script src="https://unpkg.com/malyan"></script>
  // or use a specific version/tag via URLs
  <script src="https://unpkg.com/malyan@0.0.4/dist/malyan.min.js"></script>
  • Install with NPM
  npm install malyan --save

Example

Here is a HTML boilerplate for rendering a rectangle in malyan:

<!DOCTYPE html>
<html>

<body>
    <canvas id="canvas"></canvas>
    <script src="https://unpkg.com/malyan"></script>
    <script>
        var canvas = new Malyan({
            id: 'canvas',
            width: 500,
            height: 500,
        })

        var rect = new Malyan.Rect({
            name: 'rect',
            x: 0,
            y: 0,
            width: 60,
            height: 80,
            fillStyle: 'rgba(64, 196, 255, 0.2)',
            strokeStyle: '#40c4ff',
            lineWidth: 2,
        })
        rect.translation = {
            x: 100,
            y: 100
        }
        rect.on('mousedrag', function(e) {
            rect.translation = {
                x: rect.translation.x + e.detail.deltaPoint.canvas.x,
                y: rect.translation.y + e.detail.deltaPoint.canvas.y
            }
        })
        canvas.add(rect)

        function animateLoop() {
            canvas.render()
            requestAnimationFrame(animateLoop)
        }
        animateLoop()
    </script>
</body>

</html>

Complex Examples

more examples

Development

  • Dev build

You will have to clone directly from GitHub and build malyan yourself if you want to use the latest dev build.

git clone https://github.com/HarryChen0506/malyan.git
cd malyan
npm install
npm run build
  • Update docs
npm run docs

Change log

Change Log

License

MIT