Given a textarea and a document box, Insert the text in the document in such a way that it HIGHLIGHTS the text content which is most recently added to the document.
<Document />
component should contain two major elements, textarea
and a div
acting as the document container.enter
press, the text inside of the textarea should be added to the document.recently added text
should have a blue highlight, which should fade away after 2
seconds.Click to reveal
Use animations in vanilla CSS to add blue highlight effect on the inserted paragraph. Use keyframes
to animate properties.
Click to reveal
Can you try conditionally adding a <p>
tag to maintain the state of your document?