Jump to content
  • 0

Добавить класс при определенном размере картинки


ShumNo
 Share

Question

Ребят, подскажите, пожалуйста.

есть картинка

<img width="280" height="170" class="img" src="[url="http://img/kartinka.jpg%22>"]http://img/kartinka.jpg">[/url]

Хотел бы сделать следующую вещь: если картинка меньше по ширине скажем 600 пикселей то добавить дополнительный класс в тег картинке

<img width="280" height="170" class="img sub_class" src="[url="http://img/kartinka.jpg%22>"]http://img/kartinka.jpg">[/url]

Edited by ShumNo
Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

Ребят, подскажите, пожалуйста.

есть картинка

Хотел бы сделать следующую вещь: если картинка меньше по ширине скажем 600 пикселей то добавить дополнительный класс в тег картинке

Обратиться к атрибуту with, сравнить его с нужным числом

  • Like 1
Link to comment
Share on other sites

  • 0

примерно так:


<!doctype html>
<html lang="en-us">
<head>
<title>Your title</title>
<meta charset="utf-8">
<style>
#container {
width: 500px;
margin: 0 auto;
}
img {
display: block;
margin: 0 auto;
border: solid 2px black;
}
</style>
</head>
<body>
<div id="container">
<img src="http://lorempixel.com/output/food-h-c-463-480-5.jpg" class="my_image">
</div>
<script>
var image = document.getElementsByClassName('my_image')[0];
if(image.width < 600) {
image.className = "smaller_than_600px";
}
alert("my_image new class name is: " + image.className);
</script>
</body>
</html>

  • Like 1
Link to comment
Share on other sites

  • 0

Логику то я понимаю, что надо сравнить меньше ли число, я не знаю, как это выразить в js (

В общем-то да, я бы хотел, чтобы мне написали код, если он из пары строк.

Быть может мне помогут :)

примерно так:


<!doctype html>
<html lang="en-us">
<head>
<title>Your title</title>
<meta charset="utf-8">
<style>
#container {
width: 500px;
margin: 0 auto;
}
img {
display: block;
margin: 0 auto;
border: solid 2px black;
}
</style>
</head>
<body>
<div id="container">
<img src="http://lorempixel.com/output/food-h-c-463-480-5.jpg" class="my_image">
</div>
<script>
var image = document.getElementsByClassName('my_image')[0];
if(image.width < 600) {
image.className = "smaller_than_600px";
}
alert("my_image new class name is: " + image.className);
</script>
</body>
</html>

Браво! Моя большая благодарность! Это чудесно! именно то что я хотел! Я в восторге одним словом! :)

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy