This is something I made for fun when I was learning about Konva tweens and animation, and posted as a self-answered question on StackOverflow. The coin spin effect is done by scaling the X axis of the circle from 1 to 0 to 1 in a loop. The human brain is defeated by the simpleContinue reading “Konva – HTML5 canvas coin spin effect”
Author Archives: VanquishedWombat
Konva – HTML5 canvas manual route drawing solution
This is from a StackOverflow answer I made in response to a request for a way to show a route on a map with bends. In essence this is manipulation of the points array for a Konva Line object. The user selects a point via a mouse click and that point goes into the pointsContinue reading “Konva – HTML5 canvas manual route drawing solution”
Scrollbars around an HTML5 canvas
A quick post on how to get the browser to scroll the stage. The simple solution is to draw the stage full size and place it inside a smaller div. The key here is that the div that contains the canvas has a specified width & height, and also overflow-scroll. And here is the result.
Konva – HTML5 Canvas text on a path
The canvas does not yet provide the same level of character manipulation and measuring functions as we might find in the Windows GDI or similar. But it does give us canvas.measureText() to measure character size. Combine that with path.getPointAtLength() and we can fit text to a path. Measuring Text To have any chance to fitContinue reading “Konva – HTML5 Canvas text on a path”
Konva – HTML5 Canvas bottoms-up
Or, how to get the Y-axis to go bottom-up when the normal situation is for it to increase from the top-down. While we are at it, we’ll develop the bones of a plotting class. I’ll be developing my code with the use of the Konva JS canvas library which is a wrapper for the HTML5Continue reading “Konva – HTML5 Canvas bottoms-up”
Konva – shape transform sharing is simple
So you have a shape with some transforms applied – you need to apply the same transforms to another shape. How do you do that ? It turns out that Konva gives us a simple means to accomplish the challenge. We can get the first shapes transform with the shape.getTransform() method, then with a littleContinue reading “Konva – shape transform sharing is simple”
Konva – using a shape’s transform to rotate points
The Konva HTML5 canvas lib has a very useful feature that can spit out the transform applied to a shape, and which we can borrow to rotate points without math. The example below illustrates the use of rect’s transform to position the corner circles. Codepen here. What is a transform ? I couldn’t find aContinue reading “Konva – using a shape’s transform to rotate points”
Konva – offscreen / ghost canvas
I had always created Konva stages by setting the container parameter to the selector of an existing HTML DIV element. Then I needed to create an image from canvas elements as a one-off which I would then draw into the main stage. So how to do that without having a physical, in-the-DOM container DIV? LookingContinue reading “Konva – offscreen / ghost canvas”
Dev – Developing an HTML5 canvas app? Why you should use a model
This is aimed at folks who are starting out writing apps that use the HTML5 canvas using JavaScript. There are many JavaScript canvas libs around to help you write visual apps and increase your overall productivity. This article is generic and about your planning of your app rather than being related to any one lib,Continue reading “Dev – Developing an HTML5 canvas app? Why you should use a model”
Dev – HTML5 Canvas & the DOM explained, and why use a lib?
I’ve seen a few questions on The ‘Net around how the HTML5 canvas fits into the DOM and whether canvas content can be styled via CSS – here’s my explanation. I also mention a few libraries and why you would want to use them… The HTML5 canvas element arrived with HTML5 (Wikipedia). The canvas isContinue reading “Dev – HTML5 Canvas & the DOM explained, and why use a lib?”