Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
alieegemn authored Feb 9, 2025
1 parent dd39c01 commit d4c62e6
Showing 1 changed file with 163 additions and 4 deletions.
167 changes: 163 additions & 4 deletions beinsport2/index.html
Original file line number Diff line number Diff line change
@@ -1,14 +1,173 @@
<!DOCTYPE html>
<html lang="tr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BEİN SPORT 1 - REC TV</title>

<!-- Google Fonts'tan Lexend Deca fontunu ekliyoruz -->
<link href="https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@400&display=swap" rel="stylesheet">

<style>
.popup {
display: flex;
position: fixed;
top: 0; left: 0;
width: 100%; height: 100%;
justify-content: center;
align-items: center;
opacity: 0;
visibility: hidden;
transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
/* Arkaplanı kaldırdık */
background: none; /* Arka planı silmek için 'none' kullanıyoruz */
}
.popup.show {
opacity: 1;
visibility: visible;
}
.popup-content {
display: flex;
align-items: center;
transform: scale(0.8);
transition: transform 0.3s ease-in-out;
}
.popup.show .popup-content {
transform: scale(1);
}
.popup.hide {
opacity: 0;
visibility: hidden;
}
.popup img {
max-width: 200px;
height: auto;
margin-right: 15px;
}

/* Yazı fontunu ve kalınlık ağırlığını ayarlıyoruz */
.popup-text {
font-size: 24px;
font-weight: 400; /* Regular 400 */
font-family: 'Lexend Deca', sans-serif; /* Lexend Deca fontunu kullanıyoruz */
display: flex;
flex-direction: row;
}

/* Başlangıçta beyaz renk */
.popup-text span {
display: inline-block;
opacity: 0;
transform: translateY(30px);
color: #fff;
animation: slideUp 0.6s ease-in-out forwards, colorChange 5s infinite;
}

/* Harf animasyonları */
.popup-text span:nth-child(1) { animation-delay: 0.1s; }
.popup-text span:nth-child(2) { animation-delay: 0.2s; }
.popup-text span:nth-child(3) { animation-delay: 0.3s; }
.popup-text span:nth-child(4) { animation-delay: 0.4s; }
.popup-text span:nth-child(5) { animation-delay: 0.5s; }
.popup-text span:nth-child(6) { animation-delay: 0.6s; }
.popup-text span:nth-child(7) { animation-delay: 0.7s; }
.popup-text span:nth-child(8) { animation-delay: 0.8s; }
.popup-text span:nth-child(9) { animation-delay: 0.9s; }
.popup-text span:nth-child(10) { animation-delay: 1s; }

/* Yukarı kayma animasyonu */
@keyframes slideUp {
to {
opacity: 1;
transform: translateY(0);
}
}

/* Renk değişim animasyonu */
@keyframes colorChange {
0% { color: #fff; }
25% { color: #FF5733; }
50% { color: #33FF57; }
75% { color: #3357FF; }
100% { color: #FF33A1; }
}
</style>
</head>
<body>

<div id="popup" class="popup">
<div class="popup-content">
<img src="https://rectvwebv3.pages.dev/assets/rectv.png" alt="Logo">
<div class="popup-text">
<span>r</span>
<span>e</span>
<span>c</span>
<span>t</span>
<span>v</span>
<span>w</span>
<span>e</span>
<span>b</span>
<span>v</span>
<span>3</span>
</div>
</div>
</div>

<script>
let popup = document.getElementById("popup");
let popupTimeout;

function showPopup() {
popup.classList.add("show");
popup.classList.remove("hide");

clearTimeout(popupTimeout);

popupTimeout = setTimeout(hidePopup, 5000);
}

function hidePopup() {
popup.classList.add("hide");
popup.classList.remove("show");
}

showPopup();
setInterval(showPopup, 50000);
</script>


<html>
<body>


<h2>BEİN SPORT 2 - REC TV</h2>

<iframe allowfullscreen="" class="player cursor-default-hover" frameborder="0" height="225" name="ekrani" scrolling="no" src="https://rectvwebv3.pages.dev/kanalbeinspoert2" width="100%"></iframe>
<!DOCTYPE html>
<html lang="tr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BEİN SPORT 1 - REC TV</title>
<style>
/* Sayfa geneli ve iframe için tam ekran stil */
html, body {
height: 100%;
margin: 0;
padding: 0;
overflow: hidden; /* Sayfanın taşmasını engeller */
}

<p><a href="https://rectvwebv3.pages.dev" target="iframe_a">Anasayfa</a></p>
iframe {
width: 100vw; /* Tam ekran genişliği */
height: 100vh; /* Tam ekran yüksekliği */
border: none;
}
</style>
</head>
<body>

<p>YÜKLENİYOR YAZIYORSA YÜKLENİYORDUR YAZMASA HATA YAZARSA YÜKLENMİYORDUR AMA YÜKLENİYOR YAZARSA BEKLEYİN - REC TV</p>
<!-- iframe, tüm ekranı kaplayacak şekilde yerleştirilmiştir -->
<iframe src="https://rectvwebv3.pages.dev/kanalbeinspoert2" allowfullscreen></iframe>

</body>
</html>

0 comments on commit d4c62e6

Please sign in to comment.