File: examples/imgtocvs2.html

Recommend this page to a friend!
  Classes of Thomas Björk   jQuery Load Favicon   examples/imgtocvs2.html   Download  
File: examples/imgtocvs2.html
Role: Example script
Content type: text/plain
Description: Example for image to canvas
Class: jQuery Load Favicon
jQuery plugin to load an image as page favicon
Author: By
Last change: Updated the name for the plugin from utils.js to jquery.utils.js
Added a compiled and minified version
Updated all examples with the new name (using the minified version in the examples)
Added functions to convert an image to canvas, store data in webStorage.
Added animations to favicons
Date: 2 years ago
Size: 1,117 bytes
 

Contents

Class file image Download
<!DOCTYPE html> <html> <head> <title>Image to canvas - Demo 2</title> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- load jQuery --> <script src="http://code.jquery.com/jquery-1.11.0.min.js"></script> <!-- load utils --> <script src="../jquery.utils-min.js"></script> <script> jQuery(document).ready(function() { jQuery.imageToCanvas('./favicon.svg').appendTo('#canvasArea'); }); </script> </head> <body> <h1>Image to canvas - Demo 2</h1> <div> Loads and image and converts it into a canvas. </div> <br /> <br /> <br /> <div id="canvasArea" style="border: 1px solid #cccccc;"> This is the canvas area where the above images will be places as canvas <br /> </div> <hr /> <ul> <li><a href="./index.html" title="Index">Index</a></li> <li><a href="./imgtocvs1.html" title="Image to canvas 1">Image to canvas 1</a></li> <li><a href="./imgtocvs2.html" title="Image to canvas 2">Image to canvas 2</a></li> </ul> </body> </html>