Skip to content

younkues/scenejs

 
 

Repository files navigation

Scene.js

npm version Build Status Coverage Status TypeScript License: MIT

🎬 Scene.js is an JavaScript & CSS timeline-based animation library.

Home  /  API  /  Features  /  Examples

               

Examples

More Examples

Installation

$ npm install scenejs
<script src="//daybrush.com/scenejs/release/latest/dist/scene.min.js"></script>

Documents

Related Projects

  • react-scenejs: A React Component that can easily use scenejs.
  • ng-scene: A Angular Component that can easily use scenejs.
  • vue-scene: A Vue Component that can easily use scenejs.
  • keyframer: Make the CSS Keyframes the keyframes object.
  • @scenejs/effects: Effect collection library where you can add scene effects to Scenejs.
  • @scenejs/timeline: A library that represents the timeline of Scene.js. You can control time, properties, and items.
  • @scenejs/media: A library for playing or controlling media
  • @scenejs/iframe: A library that control the animation of iframe with scenejs
  • @scenejs/render: Make a movie of CSS animation through scenejs.

Make scene

import Scene from "scenejs";

const scene = new Scene({
  ".class": {
    0: "left: 0px; top: 0px"
    1: {
      "left": "100px",
      "top": "0px"
    },
    2: {
      "left": "200px",
      "top": "100px"
    }
  }
}, {
  selector: true,
  easing: "ease-in-out",
}).play();

Effects

Support Browser

Internet Explorer Chrome FireFox Safari Opera
9+(10+ playCSS) latest latest latest latest
MIT License

Copyright (c) 2016 Daybrush

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

About

🎬 JavaScript & CSS timeline-based animation library

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • TypeScript 95.9%
  • JavaScript 1.6%
  • HTML 1.2%
  • Vue 1.1%
  • CSS 0.2%