Posts by Recurso de Acessibilidade • 31 points
4 posts
-
0
votes0
answers52
viewsQ: Changing CSS through Javascript
To apply accessibility features to a website (contrast/larger source/smaller source), I created files. alternative css with the desired formatting and called these files through a javascript.…
-
0
votes2
answers72
viewsQ: Contrast application on the page via cookies
I have a button on an accessibility bar, which when clicked calls the following function: function contraste2 () { var css = document.querySelector('#css'); var contraste = Cookies.get("contraste");…
-
0
votes3
answers1116
viewsA: Increase and Decrease Font, how to apply on a large site?
I created an alternative css with larger fonts, customizing each class the way I wanted and applied it the following way: <--! Defini um id para o css externo atual--> <link…
-
2
votes3
answers1116
viewsQ: Increase and Decrease Font, how to apply on a large site?
I have to apply the accessibility feature to increase and decrease font. I currently have 3 buttons: Small Font, Normal Font and Large Font. The idea is that when you click on each button, the…