Suggestions for HTML5 Canvas sketching libraries [closed] - html

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I am in need of a library/plugin for HTML5 canvas that allows you to sketch. I am aware that I can simply create my own script to draw on canvas, but it's the additional functionality that I don't know how to implement. So I'm hoping someone can suggest a library that can add support for:
Brush manipulation (image, size, color)
Layered drawing (or a form of 'history')
Undo support (or again, history)
Does something like this exist? If not can someone send me in the right direction with creating my own functionality like this?
Thank you!

I'm not sure about the undo support but sketch.js is a good place to start.
http://intridea.github.io/sketch.js/

Kinetic JS will be a good start ...
http://kineticjs.com/

Related

Which is the Best Client Side Scripting language with support for animations for web site development [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I am new to Web Site development and have some experience in Application Development.
What i want to know is which Client Side Scripting language will be best for front end animations such as fade ins and fade outs, dialog box animations and page loading animations.
I need them to be very light weight as much as possible.
I have heard JavaScript provides is good for this but want other options as well.
Please suggest.
JavaScript is good for this stuff, but if you what some more you can look into a library as JQuery. And for more animations and stuff maybe JQuery UI. Of course for basic animation you can use pure css and html5.(But only modern browsers support this.)
I hope this helps.

CSS framework for creating complex math expressions [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I want to be able to show complex math expressions like this...
...without having to use images or javascript.
It seems like that there are HTML characters for most of the actual glyphs, so the challenge is to scale and stack them into the correct configuration. This seems doable, but not practical for a large number of expressions. My instinct is to put together a series of classes that combine to result in a "math CSS framework".
Before I open this pandora's box, I wonder if this is a problem that has already been solved. Google doesn't seem to think so, but maybe you know otherwise.
NOTE: I love snazzy HTML5 and jazzy CSS3 tricks as mucha as the next guy, but I need IE8+ :-(
Have a look at MathJax.
http://www.cs.tut.fi/~jkorpela/math/
Also this might help
http://www.myphysicslab.com/web_math.html.

Best frameworks to make slides in HTML5 [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I want to do a presentation using HTML5. If some of you already use a good HTML5 framework to make slides please can you give me the links.
I like this one :
http://slides.html5rocks.com
But I want to have more information before choosing one.
reveal.js
deck.js
html5slides
I personally prefer reveal.js. Simple enough to easily create slides, but still powerful enough to do everything I want it to do.
Well I have used and been impressed by impress.js:
http://bartaz.github.io/impress.js
Its output is very similar to Prezi.
Bunkr is super convenient and fun to use, and nice enough.
But I haven't found a slide show framework that can handle math.
Hopefully they'll add this feature soon!
Update: reveal.js can use MathJax to handle math, as described here.

Where to find free html templates to support multiple resolutions/browsers? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
Is there a website where I can download free css/html templates for a website to support multiple browsers and resolutions?
(I want to make sure I can make use of client's entire screen and not show my website in the middle with "spares" on the sides)
Simple googling will bring you this:
http://www.freecsstemplates.org/
Tried it once, was easy to use.
This should get you started http://csstinderbox.raykonline.com/ the technique is commonly known as fluid layouts.
I've always preferred using Andreas Viklund's stuff. It's easy to tweak and some of his stuff is purposed just for being widely compatible. http://andreasviklund.com/templates/#all/1/list

Canvas Tutorial / Reference [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
Can somebody please refer me to a comprehensive tutorial on Canvas which covers all properties / functions?
I also need a definite reference on Canvas - something like w3schools
This has friendly/easy tutorials
http://developer.mozilla.org/en/Canvas_tutorial
This is pretty comprehensive
http://www.whatwg.org/specs/web-apps/current-work/multipage/the-canvas-element.html#the-canvas-element
Here is a HTML5 Canvas cheat sheet (PNG and PDF) and a HTML version of the same.
Here is a website dedicated to cheat sheets for developers, but it doesn't have any other canvas cheat sheets/references.
I run a site called Canvas Demos, where you can find lots of tutorials and tools to help you build great applications with the canvas element.
It also contains a list of games and applications made by other people with the Canvas element.
Rob Hawkes recently release "Foundation HTML5 Canvas for Games and Entertainment" book. http://rawkes.com/foundationcanvas
There's one which covers all the properties/functions:
A comprehensive reference for HTML5 canvas
Take a look at the Canvas chapter from Dive Into HTML5: http://diveintohtml5.info/canvas.html