[READ-ONLY] Mirror of https://github.com/probablykasper/canvas-experiments. Just me learning to use HTML canvas canvas-experiments.kasper.space
canvas html5-canvas website
0

Configure Feed

Select the types of activity you want to include in your feed.

Seems to be working by now

KH (Jun 25, 2017, 6:26 PM +0200) fe9a802c 0c42d695

+7 -3
+2 -2
9/index.html
··· 6 6 <title>Canvas</title> 7 7 <!--Roboto--> <link href="https://fonts.googleapis.com/css?family=Roboto:400,500" rel="stylesheet"> 8 8 <!--Favicon: http:/#F986DF/realfavicongenerator.net --> 9 - <link rel="stylesheet" type="text/css" href="../css/home.css?r=<?=rand(0,999)?>"> 9 + <!-- <link rel="stylesheet" type="text/css" href="../css/home.css?r=<?=rand(0,999)?>"> --> 10 10 </head> 11 11 12 - <body style="background-color:#2B2330"> 12 + <body class="9" style="background-color:#2B2330"> 13 13 <section class="main"> 14 14 <canvas style="background-color:#303039"></canvas> 15 15 </section>
+1 -1
9/index.php
··· 6 6 <title>Canvas</title> 7 7 <!--Roboto--> <link href="https://fonts.googleapis.com/css?family=Roboto:400,500" rel="stylesheet"> 8 8 <!--Favicon: http:/#F986DF/realfavicongenerator.net --> 9 - <link rel="stylesheet" type="text/css" href="../css/home.css?r=<?=rand(0,999)?>"> 9 + <!-- <link rel="stylesheet" type="text/css" href="../css/home.css?r=<?=rand(0,999)?>"> --> 10 10 </head> 11 11 12 12 <body style="background-color:#2B2330">
+2
css/home.css
··· 5 5 section { position: absolute; width: 100%; height: 100%; display: block; } 6 6 7 7 section canvas { position: relative; transform: translate(-50%, -50%); top: 50%; left: 50%; display: block; } 8 + 9 + body.9 section canvas { touch-action: none; }
+2
css/home.sass
··· 18 18 // width: 300px 19 19 // height: 150px 20 20 display: block 21 + body.9 section canvas 22 + touch-action: none