Проверить действие картинок можно в редакторе, добавив код в первое окошко и нажав кнопку Показать результат.
Красным выделила размер картинки
Синим — размер при наведении курсора
Уменьшение изображения
Код:
Красным выделила размер картинки
Эффекты
Увеличение картинки Код:<div class="grow pic">
<img alt="название картинки" src="ваша картинка" /></div>
<style>.grow img {
height: 300px;
width: 300px;
-webkit-transition: all 1s ease;
-moz-transition: all 1s ease;
-o-transition: all 1s ease;
-ms-transition: all 1s ease;
transition: all 1s ease;
}
.grow img:hover {
width: 400px;
height: 400px;
}</style>
Синим — размер при наведении курсора
Уменьшение изображения
Код:
<div class="shrink pic">
<img alt="название картинки" src="ваша картинка" /></div>
<style>
.shrink img {
height: 400px;
width: 400px;
-webkit-transition: all 1s ease;
-moz-transition: all 1s ease;
-o-transition: all 1s ease;
-ms-transition: all 1s ease;
transition: all 1s ease;
}
.shrink img:hover {
width: 300px;
height: 300px;
}</style>
Синим — размер при наведении курсора
Сдвиг картинки влево
Код:
Небольшой наклон
Код:
<div class="sidepan pic">
<img alt="название картинки" src="ваша картинка" /></div>
<style>.sidepan img {
margin-left: 0px;
-webkit-transition: margin 1s ease;
-moz-transition: margin 1s ease;
-o-transition: margin 1s ease;
-ms-transition: margin 1s ease;
transition: margin 1s ease;
}
.sidepan img:hover {
margin-left: -200px;
}</style>
<div class="tilt pic">
<img src="ваша картинка" alt="название картинки">
</div>
<style>.tilt {
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
-ms-transition: all 0.5s ease;
transition: all 0.5s ease;
}
.tilt:hover {
-webkit-transform: rotate(-10deg);
-moz-transform: rotate(-10deg);
-o-transform: rotate(-10deg);
-ms-transform: rotate(-10deg);
transform: rotate(-10deg);
}</style>
Трясущаяся картинка
Код:
Загнутый уголок
<div class="wibro">
</div>
<style>
.wibro{
display: block;
position: relative;
width: 320px;
height: 320px;
background: url(адрес картинки) no-repeat 0 0;
}
.wibro:hover {
-webkit-animation: 0.1s tremor ease-out infinite;
animation: 0.1s tremor ease-out infinite;
}
@-webkit-keyframes tremor {
0%, 25% {
left: -1px;
top:-1px;
-webkit-transform: translateX(-4%);
transform: translateX(-4%);
}
50%, 100% {
left: 1px;
top: 1px;
-webkit-transform: translateX(4%);
transform: translateX(4%);
}
}
@-moz-keyframes tremor {
0%, 25% {
left: -1px;
-webkit-transform: translateX(-4%);
transform: translateX(-4%);
}
50%, 100% {
left: 1px;
-webkit-transform: translateX(4%);
transform: translateX(4%);
}
}
@-ms-keyframes tremor {
0%, 25% {
left: -1px;
-webkit-transform: translateX(-4%);
transform: translateX(-4%);
}
50%, 100% {
left: 1px;
-webkit-transform: translateX(4%);
transform: translateX(4%);
}
}
@-o-keyframes tremor {
0%, 25% {
left: -1px;
-webkit-transform: translateX(-4%);
transform: translateX(-4%);
}
50%, 100% {
left: 1px;
-webkit-transform: translateX(4%);
transform: translateX(4%);
}
}
@keyframes tremor {
0%, 25% {
left: -1px;
-webkit-transform: translateX(-4%);
transform: translateX(-4%);
}
50%, 100% {
left: 1px;
-webkit-transform: translateX(4%);
transform: translateX(4%);
}
}
</style>
Код:
Скругление углов
<div class="hover-image-7">
<img src="ваша картинка" alt=""/>
<div>
<i class="fa fa-search"></i>
<div class="curl"></div>
<a href="image-large.jpg"></a>
</div>
</div>
<style>
.hover-image-7 * {
box-sizing: border-box;
}
.hover-image-7 {
color: #fff;
position: relative;
overflow: hidden;
display: inline-block;
background: #337ab7;
line-height: 0;
}
.hover-image-7 img {
opacity: 1;
transition: opacity 0.35s;
}
.hover-image-7 > div {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.hover-image-7 > div::before {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
content: "";
opacity: 0;
transition: opacity 0.4s;
background-image: linear-gradient(
45deg,
#337ab7 0%,
transparent 40%,
rgba(255, 255, 255, 0.15)
);
}
.hover-image-7:hover > div::before {
opacity: 1;
}
.hover-image-7 i,
.hover-image-7 div img {
transition: opacity 0.35s;
display: inline-block;
font-size: 36px;
width: 30px;
height: 30px;
color: #fff;
position: absolute;
bottom: 12px;
left: 12px;
opacity: 0;
z-index: 1;
}
.hover-image-7:hover i,
.hover-image-7:hover div img {
opacity: 1;
}
.hover-image-7 .curl {
width: 0px;
height: 0px;
position: absolute;
bottom: 0;
left: 0;
background: linear-gradient(
225deg,
#ffffff,
#f3f3f3 20%,
#bbbbbb 38%,
#aaaaaa 44%,
#888888 50%,
rgba(0, 0, 0, 0.7) 50%,
rgba(0, 0, 0, 0.4) 60%,
rgba(0, 0, 0, 0.3)
);
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
transition: all 0.4s ease;
}
.hover-image-7 .curl:before,
.hover-image-7 .curl:after {
content: "";
position: absolute;
z-index: -1;
left: 12%;
bottom: 6%;
width: 70%;
max-width: 300px;
max-height: 100px;
height: 55%;
box-shadow: 0 12px 15px rgba(0, 0, 0, 0.3);
transform: skew(-10deg) rotate(-6deg);
}
.hover-image-7 .curl:after {
left: auto;
right: 6%;
bottom: auto;
top: 14%;
transform: skew(-15deg) rotate(-84deg);
}
.hover-image-7 a {
left: 0;
right: 0;
top: 0;
bottom: 0;
position: absolute;
}
.hover-image-7:hover .curl {
width: 90px;
height: 90px;
}
</style>
Код:
Выделенное красным – размеры скругления каждого из четырёх углов. В примере показано скругление двух, если задать значение четырём, то картинка будет овальная или круглая.
<div class="coll-me-btn hover-effect1">
</div>
<img alt="название картинки" class="hover-effect1" src="ваша картинка" />
<style>
.hover-effect1 {
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
transition: all 0.5s ease;
}
.hover-effect1:hover {
border-radius:200px 0px 200px 0px;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
transition: all 0.5s ease;
}</style>
Увеличивающаяся картинка, с наклоном
Код:
<div class="block">
<img alt="название картинки" src="адрес картинки" title="название картинки" />
<div class="block-caption">
Описание картинки</div>
</div>
<style>
.block {
display: block;
height: 500px;
margin: 0 auto;
overflow: hidden;
position: relative;
width: 700px;
}
.block img {
transition: all 1s ease-in-out 0s;
-moz-transition: all 1s ease-in-out 0s;
-webkit-transition: all 1s ease-in-out 0s;
-o-transition: all 1s ease-in-out 0s;
}
.block .block-caption {
background: rgba(0,0,0,0.6);
bottom: 0;
color: #fff;
display: table;
left: 0;
opacity: 0;
padding: 10px 0;
position: absolute;
transition: all 0.2s ease-in-out 0s;
-moz-transition: all 0.2s ease-in-out 0s;
-webkit-transition: all 0.2s ease-in-out 0s;
-o-transition: all 0.2s ease-in-out 0s;
width: 700px;
}
.block:hover .block-caption {
opacity: 1;
}
.block:hover img {
transform: scale(1.5) rotateZ(-5deg);
-moz-transform: scale(1.5) rotateZ(-5deg);
-webkit-transform: scale(1.5) rotateZ(-5deg);
-o-transform: scale(1.5) rotateZ(-5deg);
}</style>
В коде выделила размер картинки – ширину синим, высоту красным. Заметьте, ширина полосы с названием (второе отмеченное число синим в коде) должно соответствовать ширине картинки.<img alt="название картинки" src="адрес картинки" title="название картинки" />
<div class="block-caption">
Описание картинки</div>
</div>
<style>
.block {
display: block;
height: 500px;
margin: 0 auto;
overflow: hidden;
position: relative;
width: 700px;
}
.block img {
transition: all 1s ease-in-out 0s;
-moz-transition: all 1s ease-in-out 0s;
-webkit-transition: all 1s ease-in-out 0s;
-o-transition: all 1s ease-in-out 0s;
}
.block .block-caption {
background: rgba(0,0,0,0.6);
bottom: 0;
color: #fff;
display: table;
left: 0;
opacity: 0;
padding: 10px 0;
position: absolute;
transition: all 0.2s ease-in-out 0s;
-moz-transition: all 0.2s ease-in-out 0s;
-webkit-transition: all 0.2s ease-in-out 0s;
-o-transition: all 0.2s ease-in-out 0s;
width: 700px;
}
.block:hover .block-caption {
opacity: 1;
}
.block:hover img {
transform: scale(1.5) rotateZ(-5deg);
-moz-transform: scale(1.5) rotateZ(-5deg);
-webkit-transform: scale(1.5) rotateZ(-5deg);
-o-transform: scale(1.5) rotateZ(-5deg);
}</style>
Вертикальное поднятие картинки
Код:
Вращение картинки и скругление углов
Фокусировка
Код:
Синим цвет бордюра.
<div class="vertpan pic">
<img src="ваша картинка" alt="название картинки">
</div>
<style>
.vertpan img {
margin-top: 0px;
-webkit-transition: margin 1s ease;
-moz-transition: margin 1s ease;
-o-transition: margin 1s ease;
-ms-transition: margin 1s ease;
transition: margin 1s ease;
}.vertpan img:hover {
margin-top: -200px;
}</style>
<img src="ваша картинка" alt="название картинки">
</div>
<style>
.vertpan img {
margin-top: 0px;
-webkit-transition: margin 1s ease;
-moz-transition: margin 1s ease;
-o-transition: margin 1s ease;
-ms-transition: margin 1s ease;
transition: margin 1s ease;
}.vertpan img:hover {
margin-top: -200px;
}</style>
Код:
<div class="morph pic">
<img src="ваша картинка" alt="название картинки">
</div>
<style>.morph img {
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
-ms-transition: all 0.5s ease;
transition: all 0.5s ease;
}.morph img:hover {
border-radius: 50%;
-webkit-transform: rotate(360deg);
-moz-transform: rotate(360deg);
-o-transform: rotate(360deg);
-ms-transform: rotate(360deg);
transform: rotate(360deg);
}</style>
<img src="ваша картинка" alt="название картинки">
</div>
<style>.morph img {
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
-ms-transition: all 0.5s ease;
transition: all 0.5s ease;
}.morph img:hover {
border-radius: 50%;
-webkit-transform: rotate(360deg);
-moz-transform: rotate(360deg);
-o-transform: rotate(360deg);
-ms-transform: rotate(360deg);
transform: rotate(360deg);
}</style>
<div class="focus pic">
<img src="адрес картинки" alt="название картинки">
</div>
<style>.focus img {
-webkit-transition: all 1s ease;
-moz-transition: all 1s ease;
-o-transition: all 1s ease;
-ms-transition: all 1s ease;
transition: all 1s ease;
}.focus img:hover {
border: 70px solid #000;
border-radius: 50%;
}</style>
Красным цветом в коде выделила размер бордюра.<img src="адрес картинки" alt="название картинки">
</div>
<style>.focus img {
-webkit-transition: all 1s ease;
-moz-transition: all 1s ease;
-o-transition: all 1s ease;
-ms-transition: all 1s ease;
transition: all 1s ease;
}.focus img:hover {
border: 70px solid #000;
border-radius: 50%;
}</style>
Синим цвет бордюра.
Комментарии со спамом удаляются.