diff options
| author | yo mama <pepper@scannerjammer.com> | 2015-08-07 18:33:30 -0700 |
|---|---|---|
| committer | yo mama <pepper@scannerjammer.com> | 2015-08-07 18:33:30 -0700 |
| commit | 236fd1d9f2009083fbbfce7190c27fbf1d7c88b8 (patch) | |
| tree | 6077ff15b4b770b4b292aaa14d9cbfff1ba82fae /frontend/imgrid/greatgrids/plain.html | |
| parent | c89619f1b1f908d0f330c468866cea669ce8bf6c (diff) | |
getting ready
Diffstat (limited to 'frontend/imgrid/greatgrids/plain.html')
| -rwxr-xr-x | frontend/imgrid/greatgrids/plain.html | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/frontend/imgrid/greatgrids/plain.html b/frontend/imgrid/greatgrids/plain.html new file mode 100755 index 0000000..829b45e --- /dev/null +++ b/frontend/imgrid/greatgrids/plain.html @@ -0,0 +1,28 @@ +<html> +<head> +<title>GREAT GRIDS GALLERY</title> +<style type="text/css"></style> +</head> +<body> +<canvas id="example" width="200" height="200"> +This text is displayed if your browser does not support HTML5 Canvas. +</canvas> +<div id='error'> booji boy</div> +<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script> +<script type="text/javascript"> + +var example = document.getElementById('example'); +var context = example.getContext('2d'); +context.fillStyle = "rgb(255,0,0)"; +context.fillRect(30, 30, 50, 50); + +$('canvas').hover(function() + { + var wonka = $(this).attr('id') + $('#error').html(wonka) + }); +</script> + + +</body> +</html> |
