Git Product home page Git Product logo

h5-mobile's Introduction

h5-mobile

<title>Hello Canvas</title> <script>
    function initCanvas (w, h) {
        var canvas = document.createElement('canvas'),
            ctx = canvas.getContext('2d');

        canvas.width = w;
        canvas.height = h;

        ctx.lineWidth = 1;
        ctx.lineJoin = 'round';

        document.body.appendChild(canvas);

        return ctx;
    }

    function drawPath(ctx, x, y, r, radianStart, radianEnd, anticlockwise) {
        ctx.beginPath();
        // ctx.moveTo(50, 50);
        ctx.arc(x, y, r, radianStart, radianEnd, anticlockwise);
        // ctx.closePath();
        ctx.stroke();
    }

    var ctx = initCanvas(100, 100);

    drawPath(ctx, 50, 50, 20, -1/2 * Math.PI, 1/2 * Math.PI, false);

    setTimeout(function () {
        ctx.clearRect(0,0,100,100);
        drawPath(ctx, 50, 50, 20, -1/2 * Math.PI, 2/3 * Math.PI, false);
    }, 1000);

    setTimeout(function () {
        ctx.clearRect(0,0,100,100);
        drawPath(ctx, 50, 50, 20, -1/2 * Math.PI, 2 * Math.PI, false);
    }, 2000);

</script>

h5-mobile's People

Contributors

summeroct avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.