Telegram
  • Follow Us On :

Showing all 5 results

Add to Wishlist
Add to Wishlist
Add to Wishlist
Add to Wishlist
Add to Wishlist
Add to Wishlist
Add to Wishlist
Add to Wishlist
Add to Wishlist
Add to Wishlist

$24.00

My Book Cover

Add to Wishlist
Add to Wishlist
Add to Wishlist
Add to Wishlist
Add to Wishlist
Add to Wishlist
Add to Wishlist
Add to Wishlist
Add to Wishlist
Add to Wishlist
jQuery(document).ready(function ($) { $('.like-counter').each(function () { let counter = $(this); let numRolls = counter.find('.number-roll'); let numHeight = counter.find('.number-roll li').height(); numRolls.on('changeData', function () { let number = $(this).data('val'); let offset = number * numHeight * -1; $(this).css("transform", "translateY(" + offset + "px)"); }); counter.on('click', function () { let total = ''; numRolls.each(function () { total += $(this).data('val'); }); let newTotal = parseInt(total) + 1; if (newTotal > 999) newTotal = 0; let digits = newTotal.toString().padStart(3, '0').split(''); numRolls.each(function (i) { $(this).data('val', digits[i]).trigger('changeData'); }); }); numRolls.each(function () { let randVal = Math.floor(Math.random() * 10); $(this).data('val', randVal).trigger('changeData'); }); }); });