web/index3.html
author ymh <ymh.work@gmail.com>
Wed, 07 Nov 2012 16:58:20 +0100
changeset 24 9595ad2678ec
parent 23 45b05706b516
child 29 c9c75ab3de3e
permissions -rw-r--r--
update ldt + virtualenv. Add workaround for basic http authentication

<!DOCTYPE html>
<html lang="fr">
    <head>
        <meta charset="utf-8">
        <title>The End - @todo</title>
        <link rel="stylesheet" href="static/res/css/style.css" />
    </head>
    <body>

        <center>
            <canvas id="mosaic" width="1024" height="550"></canvas>
        </center>

        <script src="static/res/js/jquery-1.8.2.min.js"></script>
        <script src="static/res/js/popcorn-complete.js"></script>
        <script src="static/res/js/popcorn.sequence.js"></script>
        <script src="static/res/js/incplayer.js"></script>
        <script src="static/res/js/ease.js"></script>        
        <script src="static/res/js/incmosaic.js"></script>
        <script>        
            $(function() {
                incMosaic.addPairImages("static/res/img/mosaic1.png", "static/res/img/mosaic2.png");
                incMosaic.addPairImages("static/res/img/mosaic2.png", "static/res/img/mosaic3.png");                
                incMosaic.addPairImages("static/res/img/mosaic1.png", "static/res/img/mosaic3.png");                
                incMosaic.start("mosaic", 16, 8);
            });
        </script>

    </body>
</html>