HTML5 lets you draw graphics straight into your web page using the
In this post, I’m going to introduce you to jCanvas, a free and open source jQuery-based library for the HTML5 Canvas API.
If you develop with jQuery, jCanvas makes it easier and quicker to code cool canvas drawings and interactive applications using jQuery syntax.
Key Takeaways
- jCanvas is a free, open-source library that integrates jQuery with the HTML5 Canvas API, simplifying the creation of graphics and interactive applications using jQuery syntax.
- To utilize jCanvas, both the jCanvas script and jQuery must be included in your project, enabling the use of jCanvas methods that are predicated on jQuery’s structure.
- jCanvas enhances the native Canvas API with additional features such as layers, events, drag-and-drop, and animation, all while maintaining compatibility with native Canvas methods.
- Drawing shapes, text, and images on the canvas is streamlined through jCanvas, with methods like drawRect(), drawArc(), and drawImage() that accept various customizable properties.
- jCanvas supports advanced functionalities like layer manipulation and animation, allowing for complex graphic creations and dynamic, interactive user experiences on web pages.
What is jCanvas?
The jCanvas website explains:
jCanvas is a JavaScript library, written using jQuery and for jQuery, that wraps around the HTML5 canvas API, adding new features and capabilities, many of which are customizable. Capabilities include layers, events, drag-and-drop, animation, and much more.
The result is a flexible API wrapped up in a sugary, jQuery-esque syntax that brings power and ease to the HTML5 canvas.
jCanvas enables you to do everything you can do with the native Canvas API and more. If you prefer, you can also use native HTML5 Canvas API methods with jCanvas. The draw() method serves just this purpose. Furthermore, you can easily extend jCanvas with your own methods and properties using its extend() feature.
Adding jCanvas to Your Project
To include jCanvas in your project, download the script from the official website or the GitHub page, then include it in your project folder. As mentioned, jCanvas needs jQuery to work, so be sure to include that too.
Your project’s script files will look something like this:
<scriptjs><span><span><span></span>></span> </span><scriptmycanvas> width<span>="600"</span> height<span>="300"</span>> <span><span><span><p>></p></span>This is fallback content </span> for users of assistive technologies or of browsers that don't have full support for the Canvas API.<span><span><span></span>></span> </span><span><span><span></span>></span></span></span></scriptmycanvas></scriptjs>
Here are a few points of interest about the code snippet above.
- By default, the dimensions of the
- Adding an id attribute is not required but will be an easy way to access the element with JavaScript.
- Content inside the
If you were to use the native Canvas API, your JavaScript would look something like this:
<scriptjs><span><span><span></span>></span> </span><scriptmycanvas> width<span>="600"</span> height<span>="300"</span>> <span><span><span><p>></p></span>This is fallback content </span> for users of assistive technologies or of browsers that don't have full support for the Canvas API.<span><span><span></span>></span> </span><span><span><span></span>></span></span></span></scriptmycanvas></scriptjs>
The snippet above caches the canvas object into a variable called $myCanvas. The properties inside the drawRect() method are mostly self-explanatory, but here’s a brief rundown:
- fillStyle sets the rectangle’s background color;
- strokeStyle sets its border color;
- strokeWidth sets the shape’s border width;
- x and y set the coordinates corresponding to the rectangle’s horizontal and vertical position inside the canvas. A value of 0 for x and of 0 for y, i.e., (0, 0), corresponds to the top left corner of the canvas. The x coordinates increase to the right and the y coordinates increase towards the bottom of the canvas. When drawing the rectangle, by default, jCanvas takes the x and y coordinates to lie at the center of the shape.
- To change this so that x and y correspond to the rectangle’s top left corner, set the fromCenter property to false.
- Finally, the width and height properties set the dimensions of the rectangle.
Here is a demo with the rectangle shape:
See the Pen jCanvas example: Rectangle by SitePoint (@SitePoint) on CodePen.
Arcs and Circles
Arcs are portions of the rim of a circle. With jCanvas, drawing arcs is just a matter of setting the desired values for a few properties inside the drawArc() method:
<script src="js/jquery.min.js><span%20><span%20><span%20></script</span>></span>%0A</span><script%20src=" js><span ><span ><span ></script>> <script src="js/script.js><span%20><span%20><span%20></script</span>></span></span>%0A%0A
Drawing%20arcs%20involves%20setting%20a%20value%20for%20the%20radius%20property%20as%20well%20as%20the%20start%20and%20end%20angles%20in%20degrees.%20If%20you%E2%80%99d%20like%20the%20direction%20of%20your%20arc%20to%20be%20counterclockwise,%20add%20the%20ccw%20property%20to%20the%20code%20above%20and%20set%20it%20to%20true.
%0AHere%E2%80%99s%20a%20CodePen%20demo%20of%20the%20above%20code:
%0ASee the Pen jCanvas example: Arc by SitePoint (@SitePoint) on CodePen.
Drawing a circle is as easy as omitting both start and end properties from the drawArc() method.
For instance, here’s how you can draw a simple graphic of a smiling face using only arc shapes:
<span ><span ><span ><canvas id<span >="myCanvas" width<span >="600" height<span >="300"> <span ><span ><span ><p>This is fallback content for users of assistive technologies or of browsers that don't have full support for the Canvas API.<span ><span ><span >> <span ><span ><span >></script>
Remember that jCanvas is based on the jQuery library, therefore you can chain jCanvas methods the same way you can chain jQuery methods.
Here’s how the code above renders in the browser:
See the Pen jCanvas example: Smiling Face by SitePoint (@SitePoint) on CodePen.
Drawing Lines and Paths
You can quickly draw lines with jCanvas using the drawLine() method and plotting a series of points to which your lines are going to connect.
<span>var canvas = document.getElementById('myCanvas'), </span> context <span>= canvas.getContext('2d');</span>
The code above sets the rounded and closed properties to true, thereby rounding the corners of the line and closing the traced path.
See the Pen jCanvas example: Connected lines by SitePoint (@SitePoint) on CodePen.
You can also draw flexible paths using the drawPath() method. Think of a path as one or more connected lines, arcs, curves, or vectors.
The drawPath() method accepts a map of points and a map of x and y coordinates for the sub-paths inside each point. You also need to specify the type of path you’re going to draw, e.g., line, arc, etc.
Here’s how you can draw a pair of connected horizontally and vertically pointing arrows using drawPath() and draw arrows(), the latter of which is a handy jCanvas method that enables you to quickly draw an arrow shape on the canvas:
<span>// Store the canvas object into a variable </span><span>var $myCanvas = $('#myCanvas'); </span> <span>// rectangle shape </span>$myCanvas<span>.drawRect({ </span> <span>fillStyle: 'steelblue', </span> <span>strokeStyle: 'blue', </span> <span>strokeWidth: 4, </span> <span>x: 150, y: 100, </span> <span>fromCenter: false, </span> <span>width: 200, </span> <span>height: 100 </span><span>});</span>
The x and y coordinates of each sub-path are relative to the x and y coordinates of the entire path.
And here’s the result:
See the Pen jCanvas example: Connected Arrows by SitePoint (@SitePoint) on CodePen.
Drawing Text
You can quickly draw text on the canvas with the aptly named drawText() method. The main properties you need for this to work are:
- text. Set this property to the text content you’d like to display on the canvas: e.g. 'Hello world'
- fontSize. The value for this property determines the size of the text on canvas. You can set the value for this property with a number, which jCanvas interprets as a value in pixels: fontSize: 30. Alternatively, you can use points, but in such a case you need to specify the measurement inside quotes: fontSize: '30pt'
- fontFamily allows you to specify a typeface for your text image: 'Verdana, sans-serif'.
Here’s the sample code:
<script src="js/jquery.min.js><span%20><span%20><span%20></script</span>></span>%0A</span><script%20src=" js><span ><span ><span ></script>> <script src="js/script.js><span%20><span%20><span%20></script</span>></span></span>%0A%0A
And%20this%20is%20what%20it%20looks%20like%20inside%20the%20
See the Pen jCanvas example: Drawing text by SitePoint (@SitePoint) on CodePen.
Drawing Images
You can import and manipulate images using the drawImage() method. Here’s an example:
<span ><span ><span ><canvas id<span >="myCanvas" width<span >="600" height<span >="300"> <span ><span ><span ><p>This is fallback content for users of assistive technologies or of browsers that don't have full support for the Canvas API.<span ><span ><span >> <span ><span ><span >></script>
And this is how the code above renders:
See the Pen jCanvas example: Importing and manipulating an image by SitePoint (@SitePoint) on CodePen.
You can view and fiddle around with all the examples above combined into a single CodePen demo here.
Canvas Layers
If you’ve ever used an image editor application like Photoshop or Gimp, you’re already familiar with layers. The cool part of working with layers is that you gain the ability to manipulate each image on your canvas individually, by drawing it on its own layer.
jCanvas offers a powerful layer API that adds flexibility to your canvas-based designs.
Here’s an overview of how to use jCanvas layers.
Adding Layers
You can only draw one object on each layer. You can add layers to your jCanvas project in either of two ways:
- Use the addLayer() method followed by the drawLayers() method
- Set the layer property to true inside any of the drawing methods
Here’s how you apply the first technique to draw a blue rectangle.
<span>var canvas = document.getElementById('myCanvas'), </span> context <span>= canvas.getContext('2d');</span>
See the Pen PZeNGp by SitePoint (@SitePoint) on CodePen.
And here’s how you apply the second method to draw the same rectangle:
<span>// Store the canvas object into a variable </span><span>var $myCanvas = $('#myCanvas'); </span> <span>// rectangle shape </span>$myCanvas<span>.drawRect({ </span> <span>fillStyle: 'steelblue', </span> <span>strokeStyle: 'blue', </span> <span>strokeWidth: 4, </span> <span>x: 150, y: 100, </span> <span>fromCenter: false, </span> <span>width: 200, </span> <span>height: 100 </span><span>});</span>
See the Pen zrjqKb by SitePoint (@SitePoint) on CodePen.
As you can see, with each of the above, we get the same result.
The important point to notice in both code samples above is that the layer has a name that you set via the name property. This makes it easy to refer to this layer in code and do all sorts of cool things with it, like changing its index value, animating it, removing it, etc.
Let’s see how we can do this.
Animating Layers
You can quickly add animations to your layer-based drawings with jCanvas using the animateLayer() method. This method accepts the following parameters:
- The layer’s index or name
- An object with key-value pairs of properties to animate
- The animation’s duration in milliseconds. This is an optional parameter, if you don’t set it, it defaults to 400
- The easing of the animation. This is also an optional parameter, if you don’t set it, it defaults to swing
- An optional callback function that runs when the animation completes.
Let’s see the animateLayer() method in action. We’ll draw a semi-transparent orange circle on a layer, then animate its position, color, and opacity properties:
<script src="js/jquery.min.js><span%20><span%20><span%20></script</span>></span>%0A</span><script%20src=" js><span ><span ><span ></script>> <script src="js/script.js><span%20><span%20><span%20></script</span>></span></span>%0A%0A
Check%20out%20the%20demo%20below%20to%20see%20the%20animation:
%0ASee the Pen jCanvas example: Animating Layers by SitePoint (@SitePoint) on CodePen.
You can view all the three previous examples combined in this CodePen demo.
Draggable Layers
One more cool feature I’d like to draw your attention to is the ability to turn a regular jCanvas layer into a draggable layer by simply setting the draggable property of the layer to true.
Here’s how:
<span ><span ><span ><canvas id<span >="myCanvas" width<span >="600" height<span >="300"> <span ><span ><span ><p>This is fallback content for users of assistive technologies or of browsers that don't have full support for the Canvas API.<span ><span ><span >> <span ><span ><span >></script>
The snippet above draws two draggable rectangle layers by incorporating: draggable: true. Also, note the use of the bringToFront property, which ensures that when you drag a layer, it automatically gets pushed to the front of all other existing layers.
Finally, the code rotates the layers and sets a box shadow, just to show how you can quickly add these effects to your jCanvas drawings.
The result looks like this:
If you’d like your app to do something before, during, or after moving a draggable layer, jCanvas makes it easy to accomplish this by supporting callback functions during the relevant events:
- dragstart triggers when you start dragging the layer
- drag fires as you drag the layer
- dragstop triggers when you stop dragging the layer
- dragcancel occurs when you drag the layer off the border of the drawing surface of the canvas.
Let’s say you’d like to display a message on the page after the user finishes dragging a layer. You can reuse the code snippet above by adding a callback function to the dragstop event, like so:
<script src="js/jquery.min.js><span%20><span%20><span%20></script</span>></span>%0A</span><script%20src=" js><span ><span ><span ></script>> <script src="js/script.js><span%20><span%20><span%20></script</span>></span></span>%0A%0A
After%20dragging%20each%20square,%20you%E2%80%99ll%20see%20a%20message%20on%20the%20page%20telling%20you%20which%20color%20square%20you%20just%20dropped.%20Try%20it%20out%20in%20the%20demo%20below:
%0ASee the Pen Draggable jCanvas Layers with Callback Function by SitePoint (@SitePoint) on CodePen.
Conclusion
In this post I’ve introduced you to jCanvas, a new jQuery-based library that works with the HTML5 Canvas API. I’ve illustrated some of jCanvas methods and properties that quickly enable you to draw on the canvas surface, add visual effects, animations, and draggable layers.
There’s so much more that you can do with jCanvas. You can visit the jCanvas documentation for detailed guidance and examples, which you can quickly test in the sandbox on the jCanvas website.
To accompany this article, I’ve put together a basic painting application on CodePen using the jCanvas drawLine() method:
See the Pen jCanvas Painting App by SitePoint (@SitePoint) on CodePen.
Feel free to make it better by adding more features and sharing your results with the SitePoint community.
Frequently Asked Questions (FAQs) about jCanvas: jQuery Meets HTML5 Canvas
What is jCanvas and how does it relate to jQuery and HTML5 Canvas?
jCanvas is a powerful JavaScript library that combines the capabilities of jQuery and HTML5 Canvas to simplify the process of creating complex graphics on a web page. It leverages the simplicity and versatility of jQuery, a fast, small, and feature-rich JavaScript library, and the graphical power of HTML5 Canvas, which is an HTML element used to draw graphics on a web page. jCanvas provides a simple and consistent API for drawing shapes, creating animations, handling events, and much more.
How do I get started with jCanvas?
To get started with jCanvas, you first need to include the jQuery library and the jCanvas library in your HTML file. You can download these libraries from their respective websites or use a Content Delivery Network (CDN). Once you have included these libraries, you can start using jCanvas functions to draw on the canvas.
How can I draw shapes using jCanvas?
jCanvas provides several functions to draw shapes on the canvas. For example, you can use the drawRect() function to draw a rectangle, the drawArc() function to draw an arc, and the drawPolygon() function to draw a polygon. Each of these functions accepts a properties object that specifies the characteristics of the shape, such as its position, size, color, and so on.
Can I animate shapes with jCanvas?
Yes, jCanvas provides a powerful animation feature that allows you to animate shapes on the canvas. You can use the animate() function to animate the properties of a shape over a specified duration. This function uses the jQuery animation engine, so it supports all the easing functions provided by jQuery.
How can I handle events with jCanvas?
jCanvas provides several functions to handle events on the canvas. For example, you can use the click() function to handle click events, the mouseover() function to handle mouseover events, and the mousedown() function to handle mousedown events. Each of these functions accepts a callback function that is called when the event occurs.
Can I use jCanvas to create complex graphics?
Yes, jCanvas is designed to simplify the process of creating complex graphics on a web page. It provides a wide range of functions to draw shapes, create animations, handle events, and much more. With jCanvas, you can create anything from simple shapes to complex animations and interactive graphics.
Is jCanvas compatible with all browsers?
jCanvas is compatible with all modern browsers that support the HTML5 Canvas element. This includes the latest versions of Google Chrome, Mozilla Firefox, Apple Safari, and Microsoft Edge. However, it does not support Internet Explorer 8 or earlier, as these browsers do not support the HTML5 Canvas element.
How can I troubleshoot issues with jCanvas?
If you encounter issues with jCanvas, you can check the console for error messages, as jCanvas provides detailed error messages to help you troubleshoot issues. You can also refer to the jCanvas documentation, which provides comprehensive information about the library and its functions.
Can I use jCanvas in commercial projects?
Yes, jCanvas is released under the MIT License, which means you can use it in both personal and commercial projects for free. However, you must include the original copyright notice and disclaimer in any copy of the software or its documentation.
Where can I find more resources about jCanvas?
You can find more resources about jCanvas on its official website, which provides a comprehensive documentation, examples, and tutorials. You can also find useful information on web development websites and forums, such as Stack Overflow and SitePoint.
The above is the detailed content of Introduction to jCanvas: jQuery Meets HTML5 Canvas. For more information, please follow other related articles on the PHP Chinese website!

Detailed explanation of JavaScript string replacement method and FAQ This article will explore two ways to replace string characters in JavaScript: internal JavaScript code and internal HTML for web pages. Replace string inside JavaScript code The most direct way is to use the replace() method: str = str.replace("find","replace"); This method replaces only the first match. To replace all matches, use a regular expression and add the global flag g: str = str.replace(/fi

Leverage jQuery for Effortless Web Page Layouts: 8 Essential Plugins jQuery simplifies web page layout significantly. This article highlights eight powerful jQuery plugins that streamline the process, particularly useful for manual website creation

So here you are, ready to learn all about this thing called AJAX. But, what exactly is it? The term AJAX refers to a loose grouping of technologies that are used to create dynamic, interactive web content. The term AJAX, originally coined by Jesse J

This post compiles helpful cheat sheets, reference guides, quick recipes, and code snippets for Android, Blackberry, and iPhone app development. No developer should be without them! Touch Gesture Reference Guide (PDF) A valuable resource for desig

jQuery is a great JavaScript framework. However, as with any library, sometimes it’s necessary to get under the hood to discover what’s going on. Perhaps it’s because you’re tracing a bug or are just curious about how jQuery achieves a particular UI

10 fun jQuery game plugins to make your website more attractive and enhance user stickiness! While Flash is still the best software for developing casual web games, jQuery can also create surprising effects, and while not comparable to pure action Flash games, in some cases you can also have unexpected fun in your browser. jQuery tic toe game The "Hello world" of game programming now has a jQuery version. Source code jQuery Crazy Word Composition Game This is a fill-in-the-blank game, and it can produce some weird results due to not knowing the context of the word. Source code jQuery mine sweeping game

Article discusses creating, publishing, and maintaining JavaScript libraries, focusing on planning, development, testing, documentation, and promotion strategies.

This tutorial demonstrates how to create a captivating parallax background effect using jQuery. We'll build a header banner with layered images that create a stunning visual depth. The updated plugin works with jQuery 1.6.4 and later. Download the


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

SublimeText3 English version
Recommended: Win version, supports code prompts!

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft
