Simple Stopwatch
Simple Stopwatch
Description
Simple Stopwatch that start with countdown timer with start, pause and reset button. Use this shortcode [simplestopwatch].
Privacy Policy
We are not taking any information of any user to our database, server or not any other way. Only the owner of the website who is using this plugin can get the users location related information.
Installation
This section describes how to install the plugin and get it working.
e.g.
Via WordPress admin
1. Search for Simple Stopwatch and install plugin
Manual Installation
1. Download plugin from wordpress.org Simple Stopwatch and extract folder.
2. Upload simple-stopwatch folder to the /wp-content/plugins/ directory
1. Activate the plugin through the ‘Plugins’ menu in WordPress
1. Place [simplestopwatch] in your pages, widget area
Faq
Yes
Simple start, pause and reset button for timer/stopwatch.
Reviews
Fixed Seconds Counting Issue
By jamiethewebguy on January 29, 2021
var secs=Math.floor(time/10);
to
var secs=Math.floor((time/10)-(mins*60));
This will fix the problem.
Also if you are looking to style the buttons you can use Custom CSS in your theme by pasting and manipulating the following CSS code:`
/* STYLE STOPWATCH BUTTONS */
#reset.stopwatchbutton {
background-color: #5085a5;
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
}
#strtpause.stopwatchbutton {
background-color: #f46036;
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
}`perfect...!!
By vishaal on May 12, 2020
Changelog
1.0
- with basic features.
1.1
- WordPress update