I'm using MetroJs and I've used an individual function to initialize each tile because I only ever want to see the back of one tile at a time. So with this code, each tile fully animates, showing the back and front, and then pauses for a while so that the other tiles do the same.
Anyway, that isn't important, as you can see my code is pretty inefficient now with a lot of repeat code. How do you think I could improve this to make it a lot shorter? I've thought about using a loop to initialise them all but I'm not sure how to go about it.
The reason I have used individual initialisers is that I need to create a count which applies to each tile, but I cant create the count variable from within .liveTile()
JS:
var count1 = 0;
var count2 = 0;
$('.live-tile.one').liveTile({
animationComplete:function() {
count1++;
if (count1 == 2) {
$('.live-tile.one').liveTile("restart", 10000);
count1 = 0;
}
}
});
$('.live-tile.two').liveTile({
animationComplete:function() {
count2++;
if (count2 == 2) {
$('.live-tile.two').liveTile("restart", 10000);
count2 = 0;
}
}
});
One way to make the count
variables a bit cleaner could be to move each initialisation into a function, which creates the count variable inside that function, but again then I would need to make the rest a bit more efficient.
Can you add
data-count='0'
to.live-tile
items?If not, you can also do this: