image zoom when resize
img {
width: 100%;
height: 100%;
object-fit: contain;
}
image zoom when resize
img {
width: 100%;
height: 100%;
object-fit: contain;
}
auto zoom image css
/*HTML*/
<img src="https://c1.staticflickr.com/1/628/22240194016_50afaeb84d_k.jpg" class="full zoom" alt="" />
/*CSS*/
body *,
html * {
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
}
body {
overflow: hidden;
}
.full {
position: absolute;
width: 100%;
height: auto;
top: 0;
bottom: 0;
left: 0;
right: 0;
margin: auto;
display: block;
}
.zoom {
animation: scale 40s linear infinite;
}
@keyframes scale {
50% {
-webkit-transform:scale(1.2);
-moz-transform:scale(1.2);
-ms-transform:scale(1.2);
-o-transform:scale(1.2);
transform:scale(1.2);
}
}
css image responsive on screen zoom
body {
background: url('http://www.sfsuicide.org/wp-content/uploads/2010/04/flower-banner.jpg');
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us