blob: af3b6f68d272fc0fb9309bc680951d61a1866dc4 (
plain)
1
2
3
4
5
|
document.querySelectorAll('.entry-container .weblog-content').forEach(function(content) {
content.querySelectorAll('img').forEach(function(img, i) {
img.classList.add(i % 2 === 0 ? 'float-left' : 'float-right');
});
});
|