bep40's picture
Trích xuất nội dung tin tức mới nhất từ bongdaplus.vn, khi nhấn vào từng tin sẽ hiện ra 6tin tức dưới dạng ý chính kèm theo toàn bộ hình ảnh bài viết
e22a952 verified
class CustomFooter extends HTMLElement {
connectedCallback() {
this.attachShadow({ mode: 'open' });
this.shadowRoot.innerHTML = `
<style>
footer {
background: #1e3a8a;
color: white;
padding: 2rem 1rem;
text-align: center;
margin-top: auto;
}
.footer-content {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 2rem;
text-align: left;
}
.footer-section h3 {
font-size: 1.125rem;
font-weight: 600;
margin-bottom: 1rem;
color: #93c5fd;
}
.footer-section ul {
list-style: none;
padding: 0;
margin: 0;
}
.footer-section li {
margin-bottom: 0.5rem;
}
.footer-section a {
color: #e5e7eb;
text-decoration: none;
transition: color 0.2s;
}
.footer-section a:hover {
color: #93c5fd;
}
.copyright {
margin-top: 2rem;
padding-top: 1rem;
border-top: 1px solid #3b82f6;
font-size: 0.875rem;
color: #e5e7eb;
}
.social-icons {
display: flex;
gap: 1rem;
justify-content: center;
margin-top: 1.5rem;
}
.social-icons a {
color: white;
transition: color 0.2s;
}
.social-icons a:hover {
color: #93c5fd;
}
@media (max-width: 768px) {
.footer-content {
grid-template-columns: 1fr;
text-align: center;
}
}
</style>
<footer>
<div class="footer-content">
<div class="footer-section">
<h3>Giới thiệu</h3>
<p class="text-gray-300">Bóng Đá Buzz Express - Nhanh nhất, chính xác nhất, đầy đủ nhất</p>
</div>
<div class="footer-section">
<h3>Liên kết</h3>
<ul>
<li><a href="#">Trang chủ</a></li>
<li><a href="#">Tin tức</a></li>
<li><a href="#">Video</a></li>
<li><a href="#">Bảng điểm</a></li>
</ul>
</div>
<div class="footer-section">
<h3>Hỗ trợ</h3>
<ul>
<li><a href="#">Liên hệ</a></li>
<li><a href="#">Điều khoản</a></li>
<li><a href="#">Bảo mật</a></li>
<li><a href="#">FAQ</a></li>
</ul>
</div>
<div class="footer-section">
<h3>Theo dõi chúng tôi</h3>
<div class="social-icons">
<a href="#"><i data-feather="facebook"></i></a>
<a href="#"><i data-feather="twitter"></i></a>
<a href="#"><i data-feather="youtube"></i></a>
<a href="#"><i data-feather="instagram"></i></a>
</div>
</div>
</div>
<div class="copyright">
<p>&copy; 2024 Bóng Đá Buzz Express. All rights reserved.</p>
</div>
</footer>
`;
}
}
customElements.define('custom-footer', CustomFooter);