You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
327 B
JavaScript

const card = document.getElementById("cardtest");
card.addEventListener('click', e => {
card.classList.toggle('rotated');
});
/*
card.addEventListener('wheel', e => {
const zoom = e.deltaY > 0 ? 'out' : 'in';
if(zoom === 'in') {
card.classList.add('scaledup');
}
else {
card.classList.remove('scaledup');
}
});
*/