Focused on delivering actionable insights and long-term analysis, Treadlines dives deep into the trends shaping the future of the global tyre market.
Treadlines offers a comprehensive look at key areas impacting the sector:
The Road Ahead: A forward-looking analysis of innovations and growth opportunities in the tyre market. EcoTracks: A focus on sustainability, circular economy practices, and the rise of eco-friendly tyres. EV Edition: A spotlight on the growing electric vehicle tyre segment and its unique challenges.
Treadlines combines research and expert commentary, and industry-leading data to deliver timely, actionable intelligence for tyre professionals, manufacturers, and decision-makers.
Available as a standalone digital download, Treadlines is offered free of charge to all current and new subscribers, demonstrating our commitment to keeping the industry informed and future-ready.
To access Treadlines and explore its powerful insights, subscribe below for FREE.
Register for free
Each Treadline edition will be sent to your inbox.
Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.
China’s SHRC and Pakistan’s GTR Sign MoU for Tyre Manufacturing Partnership
December 19, 2024
Innovation and Expansion: Nokian Tyres Celebrates Milestones in 2024
December 18, 2024
OESAA to Close After 11 Years of Transforming the Automotive Aftermarket
December 19, 2024
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
NEXEN TIRE Partners with FC Bayern to Expand Global Brand Presence
Bridgestone EMEA Earns EcoVadis Platinum Rating for Fourth Consecutive Year
Michelin and Brembo Partner to Revolutionise Safety and Driving Comfort
// 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);