JavaScripting

The definitive source of the best
JavaScript libraries, frameworks, and plugins.


  • ×

    AliceJS - (A Lightweight Independent CSS Engine) is a micro JavaScript library. For a demo, click the link below.
    Filed under 

    • 🔾23%Overall
    • 425
    • 42.8 days
    • 🕩60
    • 👥5

    AliceJS

    AliceJS - (A Lightweight Independent CSS Engine) is a micro JavaScript library focused on using hardware-accelerated capabilities (in particular CSS3 features) in modern browsers for generating high-quality, high-end visual effects.

    This library and the sample code is Open Source under the Apache 2.0 License.

    Special Attention As of version 0.5 there is no support for the 0.2 and 0.1 since there was a large transition in the method styling. So please if you're looking to transition to 0.5, you will need to re-write your code to fit the new method styling. Please take caution in doing so.

    Author(s):

    Compatibility Issues: AliceJs 0.5 is not compatible with 0.2 or 0.1. We made improvements in the readability of AliceJs with objectifying the parameters of the methods. We hope this doesn't cause any confusion or stop you from trying out the new caterpillar effect!

    Requirements:

    1. A WebKit-based browser with support for CSS3.

    How to use AliceJS in a web project

    1. Download the source package (zip or tar.gz) and unzip it to your web folder (e.g., /var/www/html/your project name/js/alice).
    2. Include the AliceJS library in your HTML using one of the following:

      a. Full library (with comments):

           <script src="js/alice/alice.js"></script>
      

      b. Minified version of the full library:

           <script src="js/alice/alice-min.js"></script>
      

      c. Specific effect(s):

           <script src="js/alice/src/alice.core.js"></script>
           <script src="js/alice/src/alice.plugins.cheshire.js"></script>
      
    3. Create your HTML markup. For example:

           <div id="deck" class="cards">
               <div class="card"><span>2</span></div>
               <div class="card"><span>3</span></div>
               <div class="card"><span>4</span></div>
               <div class="card"><span>5</span></div>
               <div class="card"><span>6</span></div>
               <div class="card"><span>7</span></div>
               <div class="card"><span>8</span></div>
               <div class="card"><span>9</span></div>
               <div class="card"><span>10</span></div>
               <div class="card"><span>J</span></div>
               <div class="card"><span>Q</span></div>
               <div class="card"><span>K</span></div>
               <div class="card"><span>A</span></div>
           </div>
      
    4. Apply Alice's effects by specifying the ID of your target DIV and some parameters. These options will apply a "slide (left)" effect to your DIVs.

           <script type="text/javascript">
           var deck = document.getElementById("deck").children;
      
           alicejs.slide({
               elems: deck, 
               move: "left", 
               duration: {
                   "value": "1000ms",
                   "randomness": "0%",
                   "offset": "150ms"
               }
           });
           </script>
      
    5. Add optional CSS styling to your DIVs:

           <style type="text/css">
           .card {
               float: left;
               background: transparent;
               border: 1px solid #CCC;
               border-radius: 20px;
               width: 75px;
               height: 100px;
               padding: 10px;
               text-align: center;
           }
           </style>
      

    More Info

    Contributing Changes

    To contribute code to this repository, you must sign up as an official contributor.

    To build the code you will need to have node installed. To build run the following in your shell(git-bash for windows):

    ./configure
    

    This will install the dependancies. You should then be able to run:

    jake
    

    to build Alice.js

    Running tests in a headless PhantomJS instance

    Those tests require Grunt. Also, require grunt-contrib-qunit and grunt-contrib-jasmine plugins. To install all of them, type:

    npm install -g grunt-cli
    npm install grunt grunt-contrib-qunit grunt-contrib-jasmine
    
    • Run qunit tests with the grunt qunit -v command.
    • Run jasmine tests with the grunt jasmine -v command.
    • Run all tests with the grunt test -v command.

    Bug Reporting and Feature Requests

    If you find a bug or have an enhancement request, please report an Issue and send a message (via github messages) to the author(s) to let them know that you have filed an issue.

    Disclaimer

    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.

    Show All