Finlease Equipment Finance Calculator
Modern, responsive widget that adapts to any iframe container size.
Resize your browser to see it automatically switch between vertical and horizontal layouts at 680px.
Responsive Layout (resize to see it adapt)
Estimated Repayments
$1,014
per month
Financed
$50,000
Interest
$10,815
Total
$60,815
No obligations. Quick response guaranteed.
*Estimate only. Final rates subject to credit assessment.
Light Mode - Default
Estimated Repayments
$710
per month
Financed
$35,000
Interest
$7,570
Total
$42,570
No obligations. Quick response guaranteed.
*Estimate only. Final rates subject to credit assessment.
Dark Mode - Custom Accent
Estimated Repayments
$1,538
per month
Financed
$75,000
Interest
$17,303
Total
$92,303
No obligations. Quick response guaranteed.
*Estimate only. Final rates subject to credit assessment.
Available Props
Embed via iframe
Step 1: Add the iframe
<iframe
id="finlease-calculator"
src="https://calculator.finlease.app/embed"
width="100%"
height="800"
frameborder="0"
style="border: none; border-radius: 16px;"
></iframe>Step 2: Add auto-resize script (optional but recommended)
This script automatically adjusts the iframe height when the calculator content changes (e.g., switching views).
<script>
window.addEventListener('message', function(event) {
if (event.data && event.data.type === 'FINLEASE_CALCULATOR_RESIZE') {
var iframe = document.getElementById('finlease-calculator');
if (iframe && event.data.height) {
iframe.style.height = event.data.height + 'px';
}
}
});
</script>Customisation via URL parameters
/embed?accentColor=22c55e
&secondaryColor=3b82f6
&tertiaryColor=f59e0b
&sliderColor=22c55e
&headerBgColor=0f172a
&brandName=YourBrand
&defaultTheme=dark
&showThemeToggle=true
&showLogo=true
&ctaUrl=https://calculator.finlease.app/quote
&ctaText=Get%20Quote
&defaultPrice=50000
&defaultRate=7.99Note: Colors can be passed with or without the # prefix.
Fixed width sidebar embed
<iframe
id="finlease-calculator"
src="https://calculator.finlease.app/embed?defaultTheme=light"
width="420"
height="850"
frameborder="0"
style="border: none;"
></iframe>