Posts by Gabriel Arcuri • 47 points
8 posts
-
0
votes1
answer93
viewsA: How to leave boxes next to each other with CSS without inline-block
Hello, I believe a display: flex div.allBox { display: flex; width: 100%; } div.box{ width: 15%; background-color: #ccc; margin: 5px; } <div class="allBox"> <div…
-
0
votes1
answer238
viewsQ: How to make a function run in real time
Hello, I’m making a player and would like to know if you have a function that runs full time, or only when such element changes In case I have that function function updateTime(){ var bufferedEnd =…
-
0
votes1
answer117
viewsQ: Put description in image with Hover
I’d like to do this Hover effect image of this site, but I’m not getting $('.img').on('mouseover', function(e) { $(this).css({ 'opacity': '0.5' }); $('.hiddenDiv').css({ 'display': 'block' }); });…
-
4
votes1
answer104
viewsQ: How to organize photos in multiple frames
I wanted to make this effect of the image below. Here img.fotosC { margin: 5px; } img.fotoLat { width: 17%; } img.fotoCent1 { width: 10%; } img.fotoCent2 { width: 40.5%; } <div…
-
0
votes1
answer1648
viewsQ: Knowing if input is focused or not in real time
Hello, I would like to make a condition in javascript where the input is focused, a label stay none and when the person clicks off it and "blurs", the label reappear. But I don’t know how to make…
-
0
votes3
answers2115
viewsA: How to use setx() and setY() methods from the FPDF library.
Hello, so according to the above comment Say you set these parameters // Definir o SetX $pdf->SetX("20"); // Definir o SetY $pdf->SetY("30"); All the elements you create below will be in that…
-
-1
votes2
answers158
viewsA: Prevent a scroll from appearing in horizontal html
Try putting in css body { width: 100%; height: 100%; background-color: white; overflow-x: hidden; }
-
0
votes1
answer1309
viewsQ: How to create dynamic input within form
First of all before you say you already have answers, I looked before and I didn’t find. Next, I want to make one form, with several dynamic inputs where the person chooses a garment in each input…