Skip to content

Commit

Permalink
add jsdoc
Browse files Browse the repository at this point in the history
  • Loading branch information
daybrush committed Mar 30, 2018
1 parent b25764b commit ba6913b
Show file tree
Hide file tree
Showing 17 changed files with 348 additions and 354 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,6 @@ doc/
dist/
release/
npm-debug.log*
coverage/
coverage/
jsdoc/
doc/
5 changes: 0 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,6 @@ scene.play();
scene.playCSS();
```

## Plugins
* [StopMotion](https://github.com/daybrush/scenejs-stopmotion)
* GetterSetter
* MovieEffect


## Support Browser

Expand Down
15 changes: 9 additions & 6 deletions demo/example/test.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,20 +13,23 @@
</style>
<script src="../release/latest/scene.js"></script>
<script>
var item = new Scene.SceneItem({
"0%": {
var item = new Scene.SceneItem([
{
transform: "translate(0px, 0px) rotateX(0deg) rotateY(0deg)",
},
"25%": {
{
transform: "translate(200px, 0px) rotateX(0deg) rotateY(180deg)",
},
"50%": {
{
transform: "translate(200px, 200px) rotateX(180deg) rotateY(180deg)",
},
"75%": {
{
transform: "translate(0px, 200px) rotateX(180deg) rotateY(0deg)",
},
}, {
{
transform: "translate(0px, 0px) rotateX(0deg) rotateY(0deg)",
}
], {
duration: 3,
easing: Scene.EASE_IN_OUT,
fillMode: "forwards",
Expand Down
2 changes: 1 addition & 1 deletion karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ module.exports = function(config) {

reporters: ["mocha"],
webpackMiddleware: {
noInfo: true,
stats: "errors-only",
},
};

Expand Down
Loading

0 comments on commit ba6913b

Please sign in to comment.