History: PluginCountup
Source of version: 15
Copy to clipboard
! Plugin Countup ''Introduced in ((Tiki25)), use this plugin to make a counter on a wiki page. You can add one or multiple counters on the same page and each counter starts to count when it becomes visible in the viewport. Each counter has its own custom settings(Title, ending number, custom counting (animation) speed, custom CSS (color, font size, font family, background, ...), etc.).'' !!Examples of use !!!!Example 1 : In this example, we have one counter on the page and we are counting the number of registered student with a conting speed of 1 second. The following code: {CODE(colors="tiki" theme="default")}{countup title="Students" titleFontWeight="bold" titleFontStyle="italic" titleFontColor="white" icon="61" description="Registered Students" descriptionFontStyle="italic" descriptionFontColor="white" endingNumber="10" numberFontWeight="800" numberFontSize="70" numberFontColor="white" speed="1" delay="1" suffix="+" backgroundImage="62" shadow="inset 2000px 0px 0px 0px #24a2c09c"}{CODE} Produces this: {img src="display1831" link="display1831" width="400" rel="box[g]" imalign="center" desc="Click to expand" align="center" styleimage="border"} !!!!Example 2 : In this example we make 2 counters on the same page and each counter has its own counting speed, custom style and start to count when it becomes visible in the viewport. The following code: {CODE(colors="tiki" theme="default")}!~~#09F:Plugin Countup~~ {countup title="Students" titleFontWeight="bold" titleFontStyle="italic" titleFontColor="white" icon="61" description="Registered Students" descriptionFontStyle="italic" descriptionFontColor="white" endingNumber="15" numberFontWeight="800" numberFontSize="70" numberFontColor="white" speed="1" delay="1" suffix="+" backgroundImage="62" shadow="inset 2000px 0px 0px 0px #24a2c09c"} {countup title="Countries" titleFontWeight="bold" titleFontColor="white" icon="60" endingNumber="195" numberFontWeight="bold" numberFontSize="70" numberFontColor="white" speed="0.02" shadow="inset 2000px 0px 0px 0px #24a2c09c"}{CODE} Produces this: {img src="display1832" link="display1832" width="400" rel="box[g]" imalign="center" desc="Click to expand" align="center" styleimage="border"} !!Parameters ''Introduced in Tiki 25.0. Required parameters are in -+bold+-.'' [https://gitlab.com/tikiwiki/tiki/-/blob/master/lib/wiki-plugins/wikiplugin_countup.php|Go to the source code] ''Preferences required: ''wikiplugin_countup ||__Parameters__|__Accepted values__|__Description__|__Default__|__Since__ -+title+-|string|Counter title| | 25.0 -+titleFontFamily+-|string|Counter title font family| | 25.0 -+titleFontWeight+-|text|Counter title font weight|normal|25.0 -+titleFontStyle+-|text|Counter title font style|normal|25.0 -+titleFontSize+-|float|Counter title font size in pixels.For instance, use -+16+- for 16 pixels|32|25.0 -+titleFontColor+-|alpha|Counter title font color. For instance, use -+blue+- for blue color.You can also use the -+hexadecimal rgb+- code or the -+rgba+- syntax to specify the color|black|25.0 -+icon+-|int|Numeric ID of an icon in a file gallery. This will be set as the counter icon|0|25.0 -+iconWidth+-|int|Icon width size|64|25.0 -+iconHeight+-|int|Icon height size|64|25.0 -+description+-|string|Short description of the counter| | 25.0 -+descriptionFonFamily+-|string|Counter description font family| | 25.0 -+descriptionFontWeight+-|text|Counter description font weight|normal|25.0 -+descriptionFontStyle+-|text|Counter description font style|normal|25.0 -+descriptionFontSize+-|float|Description font size in pixels. For instance use -+16+- fir 16 pixels|12|25.0 -+descriptionFontColor+-|alpha|Decription font color|black|25.0 -+startingNumber+-|int|The number from which the counter will start to count|0|25.0 -+__endingNumber__+-|int|The number to which the counter will stop to count| | 25.0 -+numberFontFamily+-|string|This is the font family of the displayed number in the counter at a certain time| | 25.0 -+numberFontWeight+-|text|Displayed number font weight|normal|25.0 -+numberFontSize+-|float|This is the size of the displayed number in pixels. For instance , use -+16+- for 16 pixels|32|25.0 -+numberFontColor+-|alpha|Dispalyed number font color. For instance, use -+blue+- for blue color. You can also use the -+hexadecimal rgb+- code or the -+rgba+- syntax to specify the color|black|25.0 -+speed+-|float|The counting(animation) speed of the counter in seconds|0.2|25.0 -+delay+-|float|The delay time in seconds after which the counter will start to count when it becomes visible in the viewport|1.0|25.0 -+prefix+-|text|Letter, number or symbol to use as prefix of the number counter| | 25.0 -+suffix+-|text|Letter, number or symbol to use as suffix of the number counter| | 25.0 -+width+-|int|Counter width in pixels. For instance, use -+200+- for 200 pixels|400|25.0 -+height+-|int|Counter height in pixels. For instance, use -+200+- for 200 pixels|300|25.0 -+backgroundImage+-|int|Numeric ID of an icon in a file gallery. This will be set as the counter background image|0|25.0 -+backgroundColor+-|alpha|Counter background color. You can use the color name, the -+hexadecimal rgb+- code or the -+rgba+- syntax to specify the color.| | 25.0 -+shadow+-|string|This property adds shadows to the counter via a comma separated list of shadows. A shadow is defined with horizontal and vertical offsets from the element (in our case, the counter), with blur and spread radius and with a color. For instance, use -+inset 2000px 0px 0px 0px #24a2c09c+- for 2000px horizontal offset, 0px vertical offset, 0px blur radius, 0px spread radius and with a light blue color. The inset keyword reverses the shadow inside. For the color value, you can use the color name, the hexadecimal rgb code or the rgba syntax. For more details See [https://developer.mozilla.org/en/docs/Web/CSS/box-shadow|here]. Please be sure to respect the syntax given in the documentation to see the effect.| | 25.0|| !!!!Note: This plugin will be available for use when ((Tiki25|Tiki 25.0)) will be released in October 2022. Since the plugin is already included in Tiki 25, anyone who has this version today can use the PluginCountup immediately.