Compare commits

...

2 Commits

Author SHA1 Message Date
Jeff Clement 83a8df8cc4
merge 2023-02-25 16:52:42 -07:00
Jeff Clement 59f0beb0ec
doc update 2023-02-25 16:50:28 -07:00
1 changed files with 8 additions and 0 deletions

View File

@ -6,6 +6,14 @@ Rough Javascript implementation of the infamous Neko Cat
```html
<script src="/neko/neko.js"></script>
<script language="javascript" type="text/javascript" defer>
$(function() {
// neko defaults to bottom right of screen
const neko = new Neko();
// here is another in the top right
const neko2 = new Neko(0, 0);
});
</script>
```
## Credits