top of page
The latest app has webview and displays this website.
This website has been archived to Archive.org. Just look for RaptureCalulator.com under archived websites.
RaptureCalculatorV2 is ready! Kinda. This app was a created from the website and will show you everything on the website whenever the site is updated.
Scan the QR code below to install the original app from the Amazon app store
If you have an older phone you may need to:
1. Install Amazon Appstore
2. Then, Go to Settings, Apps
- select your browser
set to install unknown apps
- select Amazon Appstore
set to install unknown apps
3. Click on the link above or open your camera and point your phone at the QR code
The original APK just has the calculator
Here is the code for the Calculator. It's not elegant.
If you can make it elegant then go for it.
import wixWindow from 'wix-window';
$w.onReady(()=>{
$w("#datePicker1").onChange(() => {
let inputDate = $w("#datePicker1").value;
// Tribulation starts same day as abomination of desolation
var quoteDate = new Date(inputDate);
var TribDate = new Date(quoteDate);
TribDate.setDate(TribDate.getDate()); // Same day as abomination of desolation
var dd = TribDate.getDate();
var mm = TribDate.getMonth() + 1;
var y = TribDate.getFullYear();
var FmTribDate = mm + '/' + dd + '/' + y;
// Calculate the date the Great Tribulation starts
var quoteDate = new Date(inputDate);
var GreatTribDate = new Date(quoteDate);
GreatTribDate.setDate(GreatTribDate.getDate() + 1260); // Adding 1260 days
var dd = GreatTribDate.getDate();
var mm = GreatTribDate.getMonth() + 1;
var y = GreatTribDate.getFullYear();
var FmGreatTribDate = mm + '/' + dd + '/' + y;
//Calculate the date of the Rapture
var quoteDate = new Date(inputDate);
var RapDate = new Date(quoteDate);
RapDate.setDate(RapDate.getDate() + 1335); // Adding 1335 days
var dd = RapDate.getDate();
var mm = RapDate.getMonth() + 1;
var y = RapDate.getFullYear();
var FmRapDate = mm + '/' + dd + '/' + y;
//Calculate the date God's Wrath
var quoteDate = new Date(inputDate);
var WrathDate = new Date(quoteDate);
WrathDate.setDate(WrathDate.getDate() + 1335); // Adding 1335 days
var dd = WrathDate.getDate();
var mm = WrathDate.getMonth() + 1;
var y = WrathDate.getFullYear();
var FmWrathDate = mm + '/' + dd + '/' + y;
//Calculate the date Temple Cleansed
var quoteDate = new Date(inputDate);
var TempleDate = new Date(quoteDate);
TempleDate .setDate(TempleDate .getDate() + 2520); // Adding 2520 days
var dd = TempleDate .getDate();
var mm = TempleDate .getMonth() + 1;
var y = TempleDate .getFullYear();
var FmTempleDate = mm + '/' + dd + '/' + y;
//Calculate the date The End
var quoteDate = new Date(inputDate);
var TheEndDate = new Date(quoteDate);
TheEndDate.setDate(TheEndDate.getDate() + 2550); // Adding 2550 days
var dd = TheEndDate.getDate();
var mm = TheEndDate.getMonth() + 1;
var y = TheEndDate.getFullYear();
var FmTheEndDate = mm + '/' + dd + '/' + y;
// Display start of the Tribulation
// $w("#TribDisplay").show();
$w("#TribDisplay").text = 'Tribulation begins: ' + String(FmTribDate) ;
$w("#TribDisplay").show();
// Display start of the Great Tribulation
// $w("#GreatTribDisplay").show();
$w("#GreatTribDisplay").text = 'Great Tribulation begins: ' + String(FmGreatTribDate) ;
$w("#GreatTribDisplay").show();
// Display the day of the Rapture
// $w("#RaptureDisplay").show();
$w("#RaptureDisplay").text = 'Sun/Moon/Stars/Rapture: ' + String(FmRapDate) ;
$w("#RaptureDisplay").show();
// Display the day of God's Wrath
// $w("#WrathDisplay").show();
$w("#WrathDisplay").text = 'Gods Wrath begins: ' + String(FmWrathDate) ;
$w("#WrathDisplay").show();
// Display the day Temple cleansed
// $w("#TempleDisplay").show();
$w("#TempleDisplay").text = 'Temple Cleansing Begins: ' + String(FmTempleDate) ;
$w("#TempleDisplay").show();
// Display The end
// $w("#TheEndDisplay").show();
$w("#TheEndDisplay").text = 'The "End": ' + String(FmTheEndDate) ;
$w("#TheEndDisplay").show();
});})
bottom of page