Yokohama Embarks on Ambitious “1-Year Plant” Project in China
December 20, 2024
Omni United Appoints Stéphane Clepkens as Test Manager to Strengthen Radar Tyres' Quality Commitment
December 20, 2024
ZC Rubber Commences Phase I Production at $280M Indonesian Plant
December 19, 2024
Introducing Treadlines: Your Gateway to In-Depth Tyre Industry Insights
China’s SHRC and Pakistan’s GTR Sign MoU for Tyre Manufacturing Partnership
Innovation and Expansion: Nokian Tyres Celebrates Milestones in 2024
OESAA to Close After 11 Years of Transforming the Automotive Aftermarket
Liqui Moly Appoints Marco Esser as New Marketing Director, Succeeding Industry Veteran Peter Baumann
Bridgestone Road Safety Program Honoured with Prestigious Prince Michael Award
Oak Tyres and Linglong Tire Reflect on Strong First Year and Future Growth Plans
Elite Garages Expands with 18th Workshop in Fareham
Apollo Terra Pro 1045 and Terra MPT 1 Among Highlights at Bauma ConExpo India 2024
BKT Appoints New Leaders to Drive OEM Growth in APAC and MEA Regions
December 17, 2024
NEXEN TIRE Partners with FC Bayern to Expand Global Brand Presence
December 17, 2024
Bridgestone EMEA Earns EcoVadis Platinum Rating for Fourth Consecutive Year
December 18, 2024
Michelin and Brembo Partner to Revolutionise Safety and Driving Comfort
December 11, 2024
Yokohama Tyres Brings Festive Cheer to Willen Hospice Santa Dash
December 20, 2024
Business
Happy Christmas & New Year Message from Tyre News Media
December 20, 2024
Yokohama Embarks on Ambitious “1-Year Plant” Project in China
December 20, 2024
Yokohama Embarks on Ambitious “1-Year Plant” Project in China
December 20, 2024
Omni United Appoints Stéphane Clepkens as Test Manager to Strengthen Radar Tyres' Quality Commitment
December 20, 2024
ZC Rubber Commences Phase I Production at $280M Indonesian Plant
December 19, 2024
Omni United Appoints Stéphane Clepkens as Test Manager to Strengthen Radar Tyres' Quality Commitment
ZC Rubber Commences Phase I Production at $280M Indonesian Plant
China’s SHRC and Pakistan’s GTR Sign MoU for Tyre Manufacturing Partnership
Innovation and Expansion: Nokian Tyres Celebrates Milestones in 2024
OESAA to Close After 11 Years of Transforming the Automotive Aftermarket
Oak Tyres and Linglong Tire Reflect on Strong First Year and Future Growth Plans
Elite Garages Expands with 18th Workshop in Fareham
BKT Appoints New Leaders to Drive OEM Growth in APAC and MEA Regions
Bridgestone EMEA Earns EcoVadis Platinum Rating for Fourth Consecutive Year
Continental AG Moves Forward with Automotive Spin-Off as Olaf Schick Announces Departure
Tracey Mortimer Appointed Managing Director of Continental Tyres UK & Ireland
GSF Car Parts Launches New National Distribution Centre in Wolverhampton
Hillclimb Garage Named Large Independent Garage of the Year at IGA Awards
Continental Approves Unlimited Delivery of Sustainable rCB from Pyrum Innovations
Tyron Runflat Urges Tyre Safety Awareness During Road Safety Week
Yokohama Off-Highway Tires Unveils Expanded Galaxy MFS 101 SDS Range
Samson Agro and Apollo Tyres Explore Tyre Innovations to Boost Fertiliser Efficiency
Galileo Wheel Launches SkidCup: A Revolution in Airless Tire Technology
HiQ Tyres & Autocare Surpasses £150,000 Fundraising Target for Breast Cancer Now
TyreNews.co.uk: Driving Sustainability in Tyre Industry Advertising
Camac Tyres Reborn: Nova Motorsport Revitalises Portugal's Iconic Tyre Brand
Vredestein Partners with AS Monaco as Official Sleeve Sponsor
Tyres Spotlighted in New National Accident Prevention Strategy
Ben’s Christmas Families Project Returns to Support Struggling Automotive Families
Fleet News
Happy Christmas & New Year Message from Tyre News Media
December 20, 2024
Elite Garages Expands with 18th Workshop in Fareham
December 20, 2024
Bridgestone Launches M-Steer 002 and M-Drive 002 Tyres for On/Off-Road Fleets
TyreSafe Brings Back ‘Good ‘Elf’ Campaign to Promote Tyre Safety This Winter
Introducing the NZ310: Petlas Unveils Advanced Trailer Tyre for Heavy Loads
Tyre News Media Combines Directory Success with Tree-Planting Initiative
HiQ Sets New Benchmark with Record Service Ratings in Nationwide Audit
Karl + Co. Revolutionises Tyre Assessment with AI-Powered TireScanMobile App
Giti Tire Leads with RFID Integration in European Truck and Bus Tyres
Goodyear Partners with KRONE Trailer for Seamless TPMS Integration
RTX Scotland 2025: Scotland’s Premier Event for the Road Haulage Sector
TyreSafe and CLOCS Join Forces to Promote Tyre Safety in Construction Logistics
Tom Beazley Drives Innovation as ETB’s New Retail Area Manager for the South West
Tyron Runflat Urges Tyre Safety Awareness During Road Safety Week
// Function to show the popup with a fade-in animation
function showPopup() {
const popup = document.getElementById('popupLoader');
if (popup) {
popup.style.display = 'block';
popup.style.opacity = '0';
let opacity = 0;
const fadeIn = setInterval(() => {
if (opacity < 1) {
opacity += 0.1;
popup.style.opacity = opacity.toString();
} else {
clearInterval(fadeIn);
}
}, 30);
}
}
// Function to set the popup display time in localStorage
function setPopupDisplayTime() {
try {
localStorage.setItem('popupLastShown', new Date().getTime().toString());
} catch (e) {
console.error('Local storage is not available:', e);
}
}
// Function to check if the popup should be shown
function shouldShowPopup() {
try {
const lastShown = localStorage.getItem('popupLastShown');
if (!lastShown) {
return true;
}
const currentTime = new Date().getTime();
const timeDifference = currentTime - parseInt(lastShown, 10);
const daysSinceLastShown = timeDifference / (1000 * 3600 * 24);
// Change this value to adjust how often the popup appears (in days)
const daysBeforeShowingAgain = 3;
return daysSinceLastShown >= daysBeforeShowingAgain;
} catch (e) {
console.error('Error checking popup display condition:', e);
return true; // Show popup if there's an error
}
}
// Main function to handle popup display
function handlePopupDisplay() {
if (shouldShowPopup()) {
showPopup();
setPopupDisplayTime();
}
}
// Event listener for when the DOM is fully loaded
document.addEventListener('DOMContentLoaded', handlePopupDisplay);