vvcomponent
Version:
VV组件
15 lines • 693 B
HTML
<script src="/class/Banner.js"></script>
<iftc-banner id="banner" width="70vw" style="display: flex;align-items: center;justify-content: center;">
<iftc-banner-content img="广告位招租.png" alt="114514"></iftc-banner-content>
<iftc-banner-content img="广告位招租.png" href="mailto:iftcceo@139.com"></iftc-banner-content>
<iftc-banner-content img="广告位招租.png"></iftc-banner-content>
</iftc-banner>
<script>
let banner = document.getElementById("banner");
banner.addEventListener("banner-change", function (e) {
console.log(e);
})
banner.addEventListener("click", function (e) {
console.log(e.target);
});
</script>