Oct 10, 2021 | Javascript, Code Example
<script language=”JavaScript”> // Parameters are rate, total number of periods, payment made each period and future valuefunction pv(rate, nper, pmt, fv) {rate = parseFloat(rate);nper = parseFloat(nper);pmt = parseFloat(pmt);fv = parseFloat(fv);if (...
Oct 12, 2019 | Javascript, CSS, Code Example
This colour wheel allows users to choose the braces elastics they want. It’s a fun little tool. More than that, it’s a ranking magnet. A ranking magnet? Google and others assess how long a user is on a web page. This gives people a chance to experiment...
Oct 12, 2019 | Javascript, CSS, Code Example
I wanted to do a reveal with the following elements: It masks a region behind a layer. In this case, a PNG with some transparency On hover, it zooms and adds a blur effect to make it look misty As it zooms in, its opacity diminishes I added some JQuery code to remove...