Posts by NotMe • 72 points
3 posts
-
2
votes2
answers1099
viewsA: Include or Require in Nodejs to separate codes
The part of requires is correct, but within each module you need to export the parts that will be public. For example: arquivo1.js function funcao() { } exports.funcao = funcao; arquivo2.js var…
-
3
votes1
answer1024
viewsA: Resize image with Javascript
It’s a lot of work to do that manually. There is a CSS property that solves this, but only allows pulling to increase the image in the lower right corner, and still has limited support. But it’s…
-
-2
votes3
answers1462
viewsA: How to create an input search html that is represented by just an icon
Use media queries to hide or display elements depending on the device. Here’s an example showing color change, but you can change anything: /* Código geral, que será herdado por qualquer…