Hey Philip,
Thanks for pointing this out. You are right that it is not included as we do not provide you with the demo content but you can recreate it by simply adding following custom css to the grid:
.slider-3d .tg-grid-slider {
overflow: visible !important;
}
.slider-3d.tg-grid-loaded .tg-active-item {
z-index: 3;
}
.slider-3d.tg-grid-loaded .tg-item-inner {
-webkit-transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
-moz-transition: opacity 0.3s ease-in-out, -moz-transform 0.3s ease-in-out;
-ms-transition: opacity 0.3s ease-in-out, -ms-transform 0.3s ease-in-out;
-o-transition: opacity 0.3s ease-in-out, -o-transform 0.3s ease-in-out;
transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}
.slider-3d.tg-grid-loaded .tg-item-inner {
opacity: 0.6;
}
.slider-3d.tg-grid-loaded .tg-active-item .tg-item-inner {
opacity: 1;
-webkit-transform: scale3d(1.15,1.15,1.15);
-moz-transform: scale3d(1.15,1.15,1.15);
-ms-transform: scale3d(1.15,1.15,1.15);
-o-transform: scale3d(1.15,1.15,1.15);
transform: scale3d(1.15,1.15,1.15);
-webkit-box-shadow: 0 0 100px rgba(0,0,0,0.25);
-moz-box-shadow: 0 0 100px rgba(0,0,0,0.25);
box-shadow: 0 0 100px rgba(0,0,0,0.25);
}
@media only screen and (max-width: 480px) {
.slider-3d .tg-grid-area-top1 *,
.slider-3d .tg-grid-area-top2 *,
.slider-3d .tg-grid-area-bottom1 * {
display: none;
}
.slider-3d.tg-grid-loaded .tg-item-inner {
opacity: 1;
}
.slider-3d.tg-grid-loaded .tg-active-item .tg-item-inner {
-webkit-transform: none;
-moz-transform: none;
-ms-transform: none;
-o-transform: none;
transform: none;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
}
}
I hope this helps you.