0
I’m developing an app and I want it to be responsive, but when I put the tag :
<meta name="viewport" content="width=device-width ,initial-scale=1.0 ,minimum-scale=0.5 ,maximum-scale=1.0" utf-8'>
Some components that have interaction, animation made in jquery and javascript stopped working.
trial
<meta name="viewport" content="width=device-width, initial-scale=1.0">
– 13dev
Unfortunately I’ve tried that too. I think it might be some conflict.
– Aderbal
Put the code of animations that don’t work so others can test.
– Laércio Lopes
Try using a tag with width set to see if the error continues, for example:
<meta name="viewport" content="width=500, initial-scale=1">
– Sam