Kitze - Zero To Shipped

Kitze - Zero To Shipped

Register & Get access to index

haremking

New member
TutFlixer
Oct 20, 2023
16
6
3
India
ep 51 and 89 shows corrupted file there are 2 video with the same name for each with different size but all 4 videos shows the same corrupt
is there a way to fix it ?
 

hiyakazeman

New member
TutFlixer
Oct 31, 2021
23
6
3
greek
Guys I made a small navigation page for labs.
create a .html file and paste this in.

save the file inside the "code" folder. You can navigate the labz files with arrow keys on the top or type the page number on the input field and hit the button

I will work on another piece of code that will import the video files inside this to make it even better.


----
---
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Page Navigator</title>
<style>
body {
margin: 0;
display: flex;
flex-direction: column;
align-items: center;
}
iframe {
width: 100%;
height: 100vh;
border: none;
}
input {
margin-top: 10px;
width: 50px;
text-align: center;
}
.navigation {
display: flex;
gap: 2rem;
}
</style>
</head>
<body>
<div class="navigation">
<p id="currentPageText">Current Page: /Labz(1).html</p>
<button onclick="navigateToPrev()">Previous Page</button>
<button onclick="navigateToNext()">Next Page</button>
<button onclick="goToPage()">Go to page -></button>
<input type="text" id="pageNumberInput" placeholder="Page Number" />
</div>
<iframe id="contentFrame" src=""></iframe>
<script>
let currentPage = 1;
function updateCurrentPageText() {
document.getElementById("currentPageText").innerText =
"Current Page: /Labz(" + currentPage + ").html";
}
function navigateToNext() {
currentPage++;
updateCurrentPageText();
document.getElementById("contentFrame").src = encodeURI(
/Labz (${currentPage}).html
);
}
function navigateToPrev() {
if (currentPage > 1) {
currentPage--;
updateCurrentPageText();
document.getElementById("contentFrame").src = encodeURI(
/Labz (${currentPage}).html
);
}
}
function goToPage() {
const inputElement = document.getElementById("pageNumberInput");
const pageNumber = parseInt(inputElement.value);
if (!isNaN(pageNumber) && pageNumber > 0) {
currentPage = pageNumber;
updateCurrentPageText();
document.getElementById("contentFrame").src = encodeURI(
/Labz (${currentPage}).html
);
}
}
updateCurrentPageText();
</script>
</body>
</html>

---
 
  • Like
Reactions: Shelly

garofabio

New member
TutFlixer
Aug 5, 2021
23
15
3
france
Hello, can you update the course with the news videos ?
Timeline

  • Uploaded the first 100 videos (10+ hrs of content)
    Jul 27

  • My daughter was born! (slight delay in recording)
    Sep 12

  • Uploaded 13 new videos (+1.5 hr of content)
    Dec 15

  • Uploaded 9 new videos (+1 hr of content)
    Dec 18

  • Uploaded 8 new videos (+1 hr of content)
    Dec 19

  • Uploaded 2 new videos
    Dec 20

  • Uploaded 5 new videos
    Jan 10

  • Uploaded 3 new videos
    Jan 15

  • Uploaded 7 new videos
    Jan 16

    Thanks !!




 
  • Like
Reactions: MrSloth

Latest resources