点击展开 · 切换方案
document.addEventListener('DOMContentLoaded', function() {
if (!_supportsWebP) return;
['r5uc-mono-pc-img','r5uc-color-pc-img','r5uc-color-spot-img',
'r5ucm-mono-mobile-img','r5ucm-color-mobile-img'].forEach(function(id) {
var el = document.getElementById(id);
if (!el) return;
var attr = el.tagName.toLowerCase() === 'image' ? 'href' : 'src';
var val = el.getAttribute(attr) || '';
if (val && val.endsWith('.png')) el.setAttribute(attr, val.replace('.png', '.webp'));
});
// nav images
document.querySelectorAll('img[src$=".png"]').forEach(function(img) {
if (img.src && img.src.includes('/assets/')) img.src = img.src.replace('.png', '.webp');
});
});