No TikTok
About this app
A fun web app to create and share short videos, without the TikTok branding.
No TikTok No TikTok Record Share
Related apps
Put this on your site
Source
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>No TikTok</title>
<meta name="description" content="A fun web app to create and share short videos, without the TikTok branding.">
<meta name="keywords" content="video, short video, social media, entertainment">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<script type="text/javascript">
try {
// App Javascript Goes Here. Place your entire script content inside the try block for error handling.
// This will run when the DOM is ready.
document.addEventListener("DOMContentLoaded", function() {
// Function to handle video recording
function recordVideo() {
// Code to record video goes here
alert("Recording video...");
}
// Function to handle video sharing
function shareVideo() {
// Code to share video goes here
alert("Sharing video...");
}
// Attach click event to record button
$("#record-button").on("click", function() {
recordVideo();
});
// Attach click event to share button
$("#share-button").on("click", function() {
shareVideo();
});
});
} catch (error) {
// This will throw the error to the parent window.
throw error;
}
</script>
<style>
/* App CSS Goes Here */
body {
font-family: 'Roboto', sans-serif;
background-color: #f9f9f9;
}
.container {
max-width: 600px;
margin: 0 auto;
padding: 40px;
text-align: center;
}
h1 {
font-size: 32px;
font-weight: bold;
margin-bottom: 20px;
}
.video-container {
background-color: #fff;
border-radius: 10px;
padding: 20px;
margin-bottom: 20px;
}
.video-container video {
width: 100%;
max-height: 300px;
object-fit: cover;
border-radius: 10px;
}
.button-container {
display: flex;
justify-content: center;
align-items: center;
gap: 20px;
}
.button {
background-color: #ff3d00;
color: #fff;
border: none;
border-radius: 5px;
padding: 10px 20px;
font-size: 16px;
font-weight: bold;
cursor: pointer;
transition: background-color 0.3s;
}
.button:hover {
background-color: #e63900;
}
</style>
</head>
<body>
<div id="main-container" class="container">
<h1>No TikTok</h1>
<div class="video-container">
<video controls></video>
</div>
<div class="button-container">
<button id="record-button" class="button">Record</button>
<button id="share-button" class="button">Share</button>
</div>
</div>
</body>
</html>
NEW APPS
These are apps made by the community!