Skip to content

Instantly share code, notes, and snippets.

@MaKleSoft
Created November 2, 2013 18:51
Show Gist options
  • Save MaKleSoft/7282179 to your computer and use it in GitHub Desktop.
Save MaKleSoft/7282179 to your computer and use it in GitHub Desktop.
Hardware accelerated carousel kind for Enyo. Should work in all modern browsers (requires css transforms/transitions).
@MaKleSoft
Copy link
Author

Example:

enyo.kind({
    name: "CarouselExample",
    components: [
        {kind: "Carousel", classes: "enyo-fill", components: [
            {style: "background-color: red"},
            {style: "background-color: blue"},
            {style: "background-color: green"}
        ]}
    ]
});

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment