Сообщение от Sagum
|
при нажатии на елемент списка менялся {'background-position' :'Х1 Х2'} только у этого елемента
|
<!doctype html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style type="text/css">
div{
height: 100px;
width: 100px;
background-image: url(https://i.pinimg.com/736x/91/e6/0d/91e60d30a2889213918a7629ab351d92.jpg);
background-position: 0px 0px;
background-repeat: no-repeat;
background-size: 100px 400px;
margin-right: 10px;
}
body{
display: flex;
justify-content: center;
}
</style>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.0/jquery.min.js"></script>
<script>
$(function() {
$('div').on('click', function() {
$(this).css({'background-position': '0px -300px'})
})
});
</script>
</head>
<body>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</body>
</html>