Image Show GK4 Bluap Image Animation

Rate this topic: Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.1.00 out of 6 based on 1 vote(s)
GK User
Fri Jan 24, 2014 7:40 am
Reply with quote
Report this post
Hi, Just wondering if it's possible to have the image in the GK4 module slide in from the right - rather than from the bottom. Can someone tell me what I need to change to achieve this?

Thanks so much
Emily
User avatar
Junior Boarder

GK User
Tue Jan 28, 2014 8:30 am
Reply with quote
Report this post
Hello,

Please open file modules/mod_image_show_gk4/styles/gk_bluap/style.css and please change this fragment:

Code: Select all
.gkIsWrapper-gk_bluap img {
        display: block;
        height: auto;
        position: relative;
        max-width: 100%;
        top: 200px;
        -webkit-transition: all .5s ease-out;
        -moz-transition: all .5s ease-out;
        -ms-transition: all .5s ease-out;
        -o-transition: all .5s ease-out;
        transition: all .5s ease-out;
}

.gkIsWrapper-gk_bluap .active img,
.gkIsWrapper-gk_bluap .animated img {
        top: 0;
}


to:

Code: Select all
.gkIsWrapper-gk_bluap img {
        display: block;
        height: auto;
        position: relative;
        max-width: 100%;
        left: 200px;
        -webkit-transition: all .5s ease-out;
        -moz-transition: all .5s ease-out;
        -ms-transition: all .5s ease-out;
        -o-transition: all .5s ease-out;
        transition: all .5s ease-out;
}

.gkIsWrapper-gk_bluap .active img,
.gkIsWrapper-gk_bluap .animated img {
        left: 0;
}
User avatar
Administrator

GK User
Wed Jan 29, 2014 4:38 am
Reply with quote
Report this post
Thanks so much - that's great :)
User avatar
Junior Boarder


cron