Calculator Tools Calculator Tools
Create

AI Text to Reanimated Collab Generator

Sep 22, 2023

About this app

Generate any text into a reanimated collab in just in a minute’s time

AI Text to Reanimated Collab Generator AI Text to Reanimated Collab Generator Generate any text into a reanimated collab in just in a minute’s time Generate Collab

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>AI Text to Reanimated Collab Generator</title>
<meta name="description" content="Generate any text into a reanimated collab in just in a minute’s time">
<meta name="keywords" content="reanimated, collaboration, animation, maker">

<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">

<!-- Built-In Functions for Apps -->
<script type="text/javascript">
var localStoragePrefix = "ct-168830728050868";
var lastSave = 0;
// save video to camera roll
function saveLocal(data) {
if (Date.now() - lastSave < 1000) {
return;
}
// save to cookie
let cookie = localStoragePrefix + "=" + JSON.stringify(data) + "; path=" + window.location.pathname + "'; SameSite=Strict";
cookie += "; expires=" + new Date(Date.now() + 1000 * 60 * 60 * 24 * 365 * 1000).toUTCString();
document.cookie = cookie;
lastSave = Date.now();
}

// load from localstorage
function loadLocal() {
var cookiePrefix = localStoragePrefix + "=";
var cookieStart = document.cookie.indexOf(cookiePrefix);
if (cookieStart > -1) {
let cookieEnd = document.cookie.indexOf(";", cookieStart);
if (cookieEnd == -1) {
cookieEnd = document.cookie.length;
}
var cookieData = document.cookie.substring(cookieStart + cookiePrefix.length, cookieEnd);
return JSON.parse(cookieData);
}
}

$(document).ready(function() {
// Code goes here
});
</script>

<style>
/* App CSS Goes Here */
body {
font-family: 'Open Sans', sans-serif;
background-color: #f5f5f5;
}

.container {
max-width: 600px;
margin: 0 auto;
padding: 40px 20px;
background-color: #fff;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
text-align: center;
}

h1 {
font-size: 32px;
font-weight: 700;
margin-bottom: 20px;
}

p {
font-size: 16px;
font-weight: 400;
margin-bottom: 20px;
}

.btn {
display: inline-block;
padding: 12px 24px;
font-size: 16px;
font-weight: 700;
text-align: center;
text-decoration: none;
border-radius: 4px;
transition: background-color 0.3s ease;
}

.btn-primary {
color: #fff;
background-color: #007bff;
border: none;
}

.btn-primary:hover {
background-color: #0056b3;
}
</style>
</head>
<body>
<div id="main-container" class="container">
<h1>AI Text to Reanimated Collab Generator</h1>
<p>Generate any text into a reanimated collab in just in a minute’s time</p>
<a href="#" class="btn btn-primary">Generate Collab</a>
</div>

<script type="text/javascript">
// auto-resize iframe
var observer = new MutationObserver(
function() {
window.parent.postMessage({height: document.documentElement.scrollHeight || document.body.scrollHeight},"*");
}
);
window.addEventListener('load', function() {
observer.observe(document.body, {attributes: true, childList: true, subtree: true});
window.parent.postMessage({height: document.documentElement.scrollHeight || document.body.scrollHeight},"*");
});
</script>
</body>
</html>