"TestCanvas"
Bootstrap 3.3.0 Snippet by couch33

<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/js/bootstrap.min.js"></script> <script src="//code.jquery.com/jquery-1.11.1.min.js"></script> <!------ Include the above in your HEAD tag ----------> <div class="container"> <canvas id="myCanvas" width="600" height="300"></canvas> <script> var canvas = document.getElementById('myCanvas'); var context = canvas.getContext('2d'); var imageObj = new Image(); context.rect(0, 0, 600, 300); // create radial gradient var grd = context.createRadialGradient(238, 50, 10, 238, 50, 300); // light blue grd.addColorStop(0, '#551a8b'); // dark blue grd.addColorStop(1, '#00cdcd'); context.fillStyle = grd; context.fill(); // do cool things with the context context.font = '40pt Calibri'; context.fillStyle = 'Red'; context.fillText('Kitten!', 130, 100); imageObj.onload = function() { context.drawImage(imageObj, 100, 150, 200, 135); }; imageObj.src = 'http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/articles/health_tools/taking_care_of_kitten_slideshow/photolibrary_rm_photo_of_kitten_in_grass.jpg'; </script> </script> </div>
body { margin: 0px; padding: 0px; }

Related: See More


Questions / Comments: