misterymyra_collaboration-18
by Admiral Potato
HTML
<script src="https://unpkg.com/vue-perfectlooper"></script>
<link rel="stylesheet" href="https://admiralpotato.github.io/vue-perfectlooper/demo.css">
<div id="app" class="container">
<div v-for="item in setList">
<h2>{{item.id}}</h2>
<vue-perfectlooper v-bind="item"></vue-perfectlooper>
</div>
</div>
JavaScript
Vue.component('vue-perfectlooper', VuePerfectlooper);
let base = 'http://root.nuclearpixel.com/animation_frames/misterymyra_collaboration/';
new Vue({
el: '#app',
data: {
setList: [
{
"id": "a",
"poster": base + "18-comp_a/0001.png",
"src": base + "18-comp_a",
"frames": 48,
"suffix": ".png"
},
{
"id": "h",
"poster": base + "18-comp_h/0001.png",
"src": base + "18-comp_h",
"frames": 48,
"suffix": ".png"
},
{
"id": "i",
"poster": base + "18-comp_i/0001.png",
"src": base + "18-comp_i",
"frames": 48,
"suffix": ".png"
},
]
}
});