Fórum Logo gigante para mobile #608498
07/03/2020
0
Matheus Fernando
Curtir tópico
+ 0Posts
12/03/2020
Stella Oliveira
HTML:
<div> <img id="imagem" src="https://www.cleverfiles.com/howto/wp-content/uploads/2016/08/mini.jpg" /> </div>
CSS:
.imgMax {
width: 100%;
}
.imgMin {
width: 50%;
}
JAVASCRIPT:
var idImage = document.getElementById("imagem");
if (screen.width <= 800 || screen.height <= 600) {
idImage.classList.toggle('imgMin');
}
else {
idImage.classList.toggle('imgMax');
}
Gostei + 0
12/03/2020
Stella Oliveira
@media(max-width: 700px) {
#img {
width: 30px
}
}
Gostei + 0
Clique aqui para fazer login e interagir na Comunidade :)