Posts by Daniel Nicoletti • 54 points
4 posts
-
0
votes1
answer49
viewsA: Custom scroll bar
I always check the compatibility of these pseudo-elements of CSS by the Mozilla, There’s saying there’s support on Safari in the version 4 and in the Safari IOS in the version 3. The Internet…
-
0
votes1
answer56
viewsA: change path color by path svg with button
To change the color of the whole SVG use the code below: Note: It doesn’t make much sense to put onClick on the button by calling a function and within that same function create a click…
-
0
votes1
answer379
viewsA: Error trying to install packages on Linux using Pip command [Linux]
The version of Pygame 1.9.2rc1 introduced some more dependencies and that on some platforms are not handled correctly. Try running the code below to install these dependencies. sudo apt install…
-
2
votes3
answers94464
viewsA: How to mask an HTML5 input?
For those who want a solution that does not use Jquery: const tel = document.getElementById('tel') // Seletor do campo de telefone tel.addEventListener('keypress', (e) =>…