Skip to content

daniilS/ritare

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ritare

Simple, pure javascript, no jQuery, oekaki applet. Originally written for Fikaba.

Here is a really professional test image, drawn with this very piece of software:

An awfully drawn image of some awful chinese cartoon characters

Features

  • Not written in Java
  • Does not use jQuery
  • You can draw images and stuff

Usage

<!doctype html>
<html>
	<head>
		<title>ritare test</title>
		<meta charset="utf-8" />
		<script type="text/javascript" src="ritare.js"></script>
		<link type="text/css" href="ritare.css" rel="stylesheet" />
	</head>
	<body>
		<div id="painter">
			<script type="text/javascript">
				Ritare.start({
					parentel: "painter",
					onFinish: function(e) {
						window.open(Ritare.canvas.toDataURL('image/png'))
					},
					width:600,
					height:300
				});
			</script>
		</div>
	</body>
</html>

Something like that. You'll figure it out.

About

Simple oekaki applet

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 91.8%
  • CSS 8.2%