nss-evening-cohort-10 / chatty-group-project-tomato-frogs

chatty-group-project-tomato-frogs created by GitHub Classroom
1 stars 2 forks source link

Large Text #15

Closed zoeames closed 5 years ago

zoeames commented 5 years ago

User Story

As a user, with tired eyes, I should be able to chat with large text.

AC

Given A user navigates to your page Then they should see a checkbox below the input field called "Large Text" And they should be able to click this checkbox And when the checkbox is selected all the message text should be larger

Dev Notes

gseals commented 5 years ago

bootstrap switches:

https://getbootstrap.com/docs/4.3/components/forms/#switches

gseals commented 5 years ago

bootstrap slider:

https://mdbootstrap.com/docs/jquery/forms/slider/

gseals commented 5 years ago

Large Text we could create an iterator that allows us to scale up the size of the text using a slide bar. we'd have to signify font size numerically and, as the slide bar goes up, the iterator increases and the iterator increases by a set amount. something like:

let ( i =0; i < 10px; i += 1) { fontSize = ${[i]}px; } a forEach statement?