Bu Kodları HTML’e Dönüştürür müsünüz? |
3 Mesajlar | 858 Okunma |
If you decide Netflix isn't for you - no problem. No commitment.
Cancel online anytime.
Watch Free For 30 Days
Watch on your TV
Smart TVs, PlayStation, Xbox, Chromecast, Apple TV, Blu-ray
players and more.
Watch instantly or download for later
Available on phone and tablet, wherever you go.
Use any computer
Watch right on Netflix.com.
Basic
Standard
Premium
Monthly price after free month ends on 6/19/19
$8.99
$12.99
$15.99
HD Available
Ultra HD Available
Screens you can watch on at the same time
1
2
4
Watch on your laptop, TV, phone and tablet
Unlimited movies and TV shows
Cancel anytime
First month free
<script>
const tabItems = document.querySelectorAll('.tab-item');
const tabContentItems = document.querySelectorAll('.tab-content-item');
// Select tab content item
function selectItem(e) {
// Remove all show and border classes
removeBorder();
removeShow();
// Add border to current tab item
this.classList.add('tab-border');
// Grab content item from DOM
const tabContentItem = document.querySelector(`#${this.id}-content`);
// Add show class
tabContentItem.classList.add('show');
}
// Remove bottom borders from all tab items
function removeBorder() {
tabItems.forEach(item => {
item.classList.remove('tab-border');
});
}
// Remove show class from all content items
function removeShow() {
tabContentItems.forEach(item => {
item.classList.remove('show');
});
}
// Listen for tab item click
tabItems.forEach(item => {
item.addEventListener('click', selectItem);
});
</script>