Posts by JAMDev • 73 points
8 posts
-
-2
votes1
answer32
viewsA: How can I insert two videos with HTML next to each other and play them both at the same time?
Add an event in javascript, which activates the moment you clicked on one of the videos, and then, inside the event, you use the play() function to play the other video. +/- thus: let Videos =…
-
4
votes1
answer33
viewsQ: jquery"Animate()" is not working
I want to use "Animate()" to pass feedback to the user after a click, but the animation is not happening. I used css to determine what would be the final state of the animation and there, it worked,…
-
1
votes1
answer44
viewsQ: How to reallocate the input(color) color palette box?
html, has a type of input that click opens a color palette for the user to choose a color: <input type='color'> I was wondering if there’s any way to edit this box that pops up, I’m mainly…
-
0
votes1
answer31
viewsQ: How to customize the track of a slider according to its value
The range input, by default in Chrome, comes with the following "effect": I wanted to know how to reproduce it, I removed all the patterns styles of this input, I was able to customize everything,…
-
1
votes1
answer27
viewsQ: Error using the 'is' method
I’m using the method is to check if, after a while, the mouse is inside or outside an element. However, for some reason, it is giving the following error: Uncaught Typeerror: Aucon.is is not a…
-
0
votes1
answer138
viewsA: How to make an image mapping responsive?
FOIIII! To make a responsive image mapping, I used javascript. It had the function of picking up the image (I used "Document.getElementById('Image id').width") and according to the proportion I gave…
-
-1
votes1
answer138
viewsQ: How to make an image mapping responsive?
<img id="Imag" usemap="#Calculadora" width="100%" height="auto" src="Calculadora.png"> <map name="Calculadora"> <area class="mapa" onclick="teste()" coords="252,953,647,1379"…
-
-1
votes1
answer20
viewsQ: Layout not fitting properly on mobile devices
I used a Media Query to make a responsive layout, which would look like this on the desktop: And so on mobile: The problem is that when I enter the site using the mobile phone the layout is not as…