How to get another paralax image to appear in bottom 2 modul

GK User
Mon Sep 29, 2014 2:48 pm
Image

Current code
Code: Select all
<p>Fusion Direct Marketing is the expert in leveraging unmatched power on media airwaves &amp; the Internet. Our Marketing Strategy produces $3.5 BILLION ANNUALLY in new sales for our dealerships. Over FIVE MILLION TIMES we’ve generated viable, qualified, local traffic for some of North America’s most notable dealerships. Using the media’s unrivaled reach, the World Wide Web’s explosive growth, and our record-setting expertise in monetizing digital advertising, Fusion Direct Marketing is able to offer clients the lowest price per new customer anywhere in the nation, resulting in an unfathomably high ROI.</p>
<p class="gk-avatar"><img alt="" src="images/demo/chef_avatar.jpg" /><strong>FDM</strong>
</p>
<p><img class="gk-description-left-img" alt="" src="images/demo/restaurant_left_bg.png" data-scroll-reveal="enter left over .5s" /><img class="gk-description-right-img" alt="" src="images/restaurant_right_bg.png" data-scroll-reveal="enter right over .5s after .25s" />
</p>
User avatar
Gold Boarder

teitbite
Tue Sep 30, 2014 12:32 pm
Hi

Please send me an URL and access to your site and a path to image. I'll try to make it for you.
User avatar
Moderator

GK User
Tue Sep 30, 2014 2:26 pm
sent to your inbox
teitbite wrote:Hi

Please send me an URL and access to your site and a path to image. I'll try to make it for you.
User avatar
Gold Boarder

teitbite
Wed Oct 01, 2014 10:30 am
Hi

I have disabled editor in user settings to be able to make changes to module's html. Than I've used this code for images:

Code: Select all
<img src="images/demo/restaurant_left_bg.png" alt="" data-scroll-reveal="enter left over .5s after .25s" class="gk-description-left-img" />
<img src="images/restaurant_right_bg.png" alt="" data-scroll-reveal="enter right over .5s after .25s" class="gk-description-right-img" />


basicaly same You had, but with " after .25s" value to see the slideing.

Last step was to add this code to override after setting override in template settings:

Code: Select all
.gk-description-left-img {
    bottom: 50px;
    top: auto;
}
User avatar
Moderator

GK User
Wed Oct 01, 2014 12:09 pm
teitbite wrote:Hi

I have disabled editor in user settings to be able to make changes to module's html. Than I've used this code for images:

Code: Select all
<img src="images/demo/restaurant_left_bg.png" alt="" data-scroll-reveal="enter left over .5s after .25s" class="gk-description-left-img" />
<img src="images/restaurant_right_bg.png" alt="" data-scroll-reveal="enter right over .5s after .25s" class="gk-description-right-img" />


basicaly same You had, but with " after .25s" value to see the slideing.

Last step was to add this code to override after setting override in template settings:

Code: Select all
.gk-description-left-img {
    bottom: 50px;
    top: auto;
}


That's exactly what I wanted except I still wanted an image to come in at the top left also. So there would be three images that slid in. One top left, one bottom left and one bottom right. Is that possible?
User avatar
Gold Boarder

teitbite
Fri Oct 03, 2014 10:09 am
Hi

That would be a little harder, but let's try :)

HTML:
Code: Select all
<img src="images/demo/restaurant_left_bg.png" alt="" data-scroll-reveal="enter left over .5s after .25s" class="gk-description-left-img" />
<img src="images/demo/restaurant_left_bg.png" alt="" data-scroll-reveal="enter left over .5s after .25s" class="gk-description-left-img to-bottom" />
<img src="images/restaurant_right_bg.png" alt="" data-scroll-reveal="enter right over .5s after .25s" class="gk-description-right-img" />


CSS:
Code: Select all
.gk-description-left-img.to-bottom {
    bottom: 50px;
    top: auto;
}
User avatar
Moderator


cron
Remember me
Register New Account
If you are old Gavick user, click HERE for steps to retrieve your account.