forked from External/greenlight
36 lines
728 B
Plaintext
36 lines
728 B
Plaintext
<div class="container">
|
|
|
|
<h1 id="main-text" class="display-3 text-center text-primary mt-9">Teach Students Online.</h1>
|
|
<%= render "shared/modals/video_modal" %>
|
|
|
|
<hr class="small-rule">
|
|
|
|
<%= render "shared/features" %>
|
|
</div>
|
|
|
|
<script>
|
|
$(window).on('load',function(){
|
|
$('#welcomeModal').modal('show');
|
|
});
|
|
|
|
textOptions = [
|
|
"Start your own Meeting.",
|
|
"Collaborate with Friends.",
|
|
"Connect in Real-Time.",
|
|
"Teach Students Online.",
|
|
]
|
|
|
|
textOpt = 0
|
|
|
|
var changeText = function(){
|
|
$('#main-text').text(textOptions[textOpt]);
|
|
$('#main-text').fadeIn(1000)
|
|
textOpt++;
|
|
if (textOpt > textOptions.length) { textOpt = 0; }
|
|
}
|
|
|
|
setInterval(function(){
|
|
$('#main-text').fadeOut(1000, changeText)
|
|
}, 7000);
|
|
</script>
|