added more preview pages and more templates

This commit is contained in:
2026-07-21 07:10:03 -05:00
parent c6119ffdf5
commit b19fdee30d
3726 changed files with 651487 additions and 6169 deletions
@@ -0,0 +1,30 @@
/*---------- Counter-Up ----------*/
$(document).ready(function(){
// Loop through each element with class 'count'
$('.count').each(function() {
var $this = $(this),
countTo = $this.attr('data-count'); // Get the target value
// Animate the counting from the 'Current Value' to the 'Target Value'
$({ countNum: $this.text()}).animate({
countNum: countTo // Animate towards the target value
},
{
duration: 5000, // Animation duration (5 seconds)
// Function called on each step of the animation
step: function() {
$this.text(Math.floor(this.countNum)); // Update the displayed value
},
// Function called when the animation is complete
complete: function() {
$this.text(this.countNum + '+'); // Update the displayed value with a '+' sign
}
});
});
});