36 lines
974 B
CSS
36 lines
974 B
CSS
.eael-image-scroller {
|
|
position: relative;
|
|
overflow: auto;
|
|
line-height: 0 img;
|
|
line-height-margin: 0;
|
|
line-height-padding: 0;
|
|
line-height-border: 0;
|
|
line-height-border-radius: 0;
|
|
}
|
|
.eael-image-scroller.eael-image-scroller-horizontal img {
|
|
width: inherit;
|
|
max-width: unset;
|
|
max-height: 100%;
|
|
}
|
|
.eael-image-scroller.eael-image-scroller-vertical img {
|
|
width: 100%;
|
|
max-width: 100%;
|
|
height: auto;
|
|
}
|
|
.eael-image-scroller.eael-image-scroller-hover {
|
|
cursor: all-scroll;
|
|
overflow: hidden;
|
|
}
|
|
.eael-image-scroller.eael-image-scroller-hover img {
|
|
-webkit-transition-property: -webkit-transform;
|
|
transition-property: -webkit-transform;
|
|
transition-property: transform;
|
|
transition-property: transform, -webkit-transform;
|
|
-webkit-transition-duration: 1s;
|
|
transition-duration: 1s;
|
|
-webkit-transition-timing-function: linear;
|
|
transition-timing-function: linear;
|
|
-webkit-transition-delay: 0s;
|
|
transition-delay: 0s;
|
|
}
|