Posts by Patrique Alves • 175 points
14 posts
-
3
votes1
answer33
viewsQ: Click run suggestion function
I’m making a keyboard https://codepen.io/patrique-alves/pen/oNvbwBw It gives suggestions according to what the user is typing, my suggestion script works when I type through the physical keyboard,…
-
1
votes2
answers57
viewsQ: Count product output on day in mysql
I have an exit table of stock materials which is organized as follows I have products in stock every time I leave is released the number indicating the product id, the amount of output and the day,…
-
4
votes2
answers476
viewsQ: Diagonal edge at the corners of the page
I am studying about diagonal edges and intend to apply an effect like this on my page: Until now I found little material about it and the closest was this: html, body { height: 100%; } * {…
-
2
votes1
answer172
viewsQ: Virtual keyboard pick position in input
I’m making a simple virtual keyboard: https://codepen.io/anon/pen/qGvweN But I can’t identify the position of the pointer in the field, every time I type the letter it only comes out at the end,…
javascriptasked Patrique Alves 175 -
-1
votes1
answer67
viewsQ: Centralize content
I’m making a keyboard in HTML and CSS but I’m not able to center the content, or is left as in the example below or right, how can I center? #calculator { width: 720px; height: auto; padding: 0;…
-
1
votes2
answers148
viewsQ: Increase color hue
I have for example the following color in Hex #FAC328 and would like, via code, to increase its tone to another 10% staying this way It is possible to do this via javascript?…
-
0
votes1
answer157
viewsQ: Input Mask not working in mobile version
I have a very simplistic code to create masks in input fields It works that is a beauty on the desktop but when I run the script on mobile simply nothing happens, because? function formatar(mascara,…
javascriptasked Patrique Alves 175 -
3
votes1
answer240
viewsQ: Random from 1 to 500 without repeating
I have a table in the database with ids from 1 to 500, each time the page is updated a number drawn appears and I make a select and display a message that is in the selected id, but I would like…
-
-3
votes1
answer39
viewsQ: Take 1 record per date, without repeating the date
I have a box system where every time the box is opened and closed every day is recorded on the table, the box is opened and closed several times a day, however I would like to catch only the first…
-
-2
votes1
answer1300
viewsQ: Move by Divs via keyboard arrows
A while ago I came across a plugin in jQuery in which I could move through Divs, menus, images... using the arrow keys on the keyboard. I’ve searched a lot but I can’t find anything. Someone there…
-
-3
votes1
answer1112
viewsQ: Responsive content with side remaining
Guys, I’m trying to pass content to responsive, but I’m having difficulties, I followed some articles on the internet, and I got this result However I’m not able to make the content stay 100% is…
-
0
votes2
answers433
viewsA: Css Hover Transition
Can fix it, now it’s as I would like. https://codepen.io/narrador/pen/LOqJeY
-
1
votes2
answers433
viewsQ: Css Hover Transition
Friends, I have the following code https://codepen.io/narrador/pen/vWbrPr In the current effect when I move the mouse the Hover effect changes the background and increases the proportions of the div…
-
0
votes1
answer113
viewsQ: Redeem querystring value by jquery load
I’m trying to call a page through the load, this page will have a querystring that I want to pick it up on the call page, but the value comes as null when I try through the load, outside it calling…