From b44cd23e696bc41226fa1764119234810bb26981 Mon Sep 17 00:00:00 2001 From: N0H3dy Date: Wed, 22 Feb 2023 16:36:24 -0500 Subject: [PATCH] small changes to home page --- Frontend/Home.html | 2 +- Frontend/video-editing.css | 11 +++++++++++ Frontend/video-editing.html | 8 ++++---- Frontend/video-editing.js | 11 +++++++++++ 4 files changed, 27 insertions(+), 5 deletions(-) diff --git a/Frontend/Home.html b/Frontend/Home.html index 561e8ed..a351aaa 100644 --- a/Frontend/Home.html +++ b/Frontend/Home.html @@ -40,7 +40,7 @@

Revolutionizing
Video Editing

placeholder: false, theme: 'snow' }); - editor.root.innerHTML = '

What do we do?

'; + editor.root.innerHTML = '

Using the latest AI technology, we provide an innovative way to edit your videos.

'; diff --git a/Frontend/video-editing.css b/Frontend/video-editing.css index 3eba17b..0bc6d62 100644 --- a/Frontend/video-editing.css +++ b/Frontend/video-editing.css @@ -203,6 +203,17 @@ nav ul li a{ margin-bottom: 20px; } +#transcript p{ + font-size: 24px; + font-weight: bold; + transition: 0.32s; +} + +#transcript p:hover{ + color: #00d199; + font-size: 28px; +} + /* .transcript-textarea { width: 100%; height: 80%; diff --git a/Frontend/video-editing.html b/Frontend/video-editing.html index c732535..fb3461f 100644 --- a/Frontend/video-editing.html +++ b/Frontend/video-editing.html @@ -23,7 +23,7 @@ - - + + diff --git a/Frontend/video-editing.js b/Frontend/video-editing.js index 9939d44..37ea496 100644 --- a/Frontend/video-editing.js +++ b/Frontend/video-editing.js @@ -1,3 +1,14 @@ +let transcriptArea = document.getElementById("transcript"); +let transcriptHTML = ` ` + +for (let i =0; i<10; i++){ + transcriptHTML += `

Testing for the length of the transcript container.

` +} +console.log(transcriptHTML); +transcriptArea.innerHtml = "

Hello world

"; +console.log(transcriptArea.innerHtml); + + // This script deals with adding functionality to the transcript, and all other features on the site var transcript = document.getElementById("transcript");