-
AuthorPosts
-
Henning Friend
Henning
- Join date:
- February 2012
- Posts:
- 69
- Downloads:
- 45
- Uploads:
- 9
- Thanks:
- 40
- Thanked:
- 9 times in 1 posts
June 26, 2015 at 12:20 pm #207885Hi Guys,
I’m trying to change the animation of ‘Style 3’ to that of ‘Style 1’ on the JA ACM Slideshow. The next image should fade in like that of Style 1, currently it only slides the image from left to right.
I would appreciate it if you can point me in right direction.
Regards,
HenningSaguaros ModeratorSaguaros
- Join date:
- September 2014
- Posts:
- 31405
- Downloads:
- 237
- Uploads:
- 471
- Thanks:
- 845
- Thanked:
- 5346 times in 4964 posts
June 29, 2015 at 4:08 am #575761Hi Henning,
I tried to install Uber template in my local, then change JA ACM Slideshow from style-3 to style-1 but it still slides correctly.
Pls take a backup of your site and make sure that you have last version for this module.
If there is still no go, you can PM me your site’s login info, I will take a look
Saguaros ModeratorSaguaros
- Join date:
- September 2014
- Posts:
- 31405
- Downloads:
- 237
- Uploads:
- 471
- Thanks:
- 845
- Thanked:
- 5346 times in 4964 posts
June 29, 2015 at 4:08 am #642090Hi Henning,
I tried to install Uber template in my local, then change JA ACM Slideshow from style-3 to style-1 but it still slides correctly.
Pls take a backup of your site and make sure that you have last version for this module.
If there is still no go, you can PM me your site’s login info, I will take a look
Saguaros ModeratorSaguaros
- Join date:
- September 2014
- Posts:
- 31405
- Downloads:
- 237
- Uploads:
- 471
- Thanks:
- 845
- Thanked:
- 5346 times in 4964 posts
June 29, 2015 at 4:08 am #740750Hi Henning,
I tried to install Uber template in my local, then change JA ACM Slideshow from style-3 to style-1 but it still slides correctly.
Pls take a backup of your site and make sure that you have last version for this module.
If there is still no go, you can PM me your site’s login info, I will take a look
Henning FriendHenning
- Join date:
- February 2012
- Posts:
- 69
- Downloads:
- 45
- Uploads:
- 9
- Thanks:
- 40
- Thanked:
- 9 times in 1 posts
July 1, 2015 at 8:00 am #575983Hi Saguaros,
I am able to change from styles, however I would like to have style 3 to have the animation of Style 1, the image should fade in like on style 1. Only the animation not the styling. I am using the latest version of JA ACM.
Regards,
HenningHenning FriendHenning
- Join date:
- February 2012
- Posts:
- 69
- Downloads:
- 45
- Uploads:
- 9
- Thanks:
- 40
- Thanked:
- 9 times in 1 posts
July 1, 2015 at 8:00 am #642311Hi Saguaros,
I am able to change from styles, however I would like to have style 3 to have the animation of Style 1, the image should fade in like on style 1. Only the animation not the styling. I am using the latest version of JA ACM.
Regards,
HenningHenning FriendHenning
- Join date:
- February 2012
- Posts:
- 69
- Downloads:
- 45
- Uploads:
- 9
- Thanks:
- 40
- Thanked:
- 9 times in 1 posts
July 1, 2015 at 8:00 am #740970Hi Saguaros,
I am able to change from styles, however I would like to have style 3 to have the animation of Style 1, the image should fade in like on style 1. Only the animation not the styling. I am using the latest version of JA ACM.
Regards,
HenningSaguaros ModeratorSaguaros
- Join date:
- September 2014
- Posts:
- 31405
- Downloads:
- 237
- Uploads:
- 471
- Thanks:
- 845
- Thanked:
- 5346 times in 4964 posts
July 2, 2015 at 4:00 am #576084You can try with this tweak:
– Go to file: root/templates/uber/acm/container-slideshow/css/style.css
– At approx line 151, you will see this css rule:
.acm-container-slide.slide-3 .carousel-inner > .item {
-webkit-transition: left 400ms;
-o-transition: left 400ms;
transition: left 400ms;
}
Replace with:
.acm-container-slide.slide-3 .carousel-inner > .item {
transition-property: opacity;
}
Henning FriendHenning
- Join date:
- February 2012
- Posts:
- 69
- Downloads:
- 45
- Uploads:
- 9
- Thanks:
- 40
- Thanked:
- 9 times in 1 posts
July 2, 2015 at 6:33 am #576094Hi Saguaros,
Works perfectly, thanks a lot! I Was wondering if you can help me with the fade duration. I’m trying to have my Slideshow look like the following site; http://www.africaspeedrail.com/.
Thanks in advance,
HenningSaguaros ModeratorSaguaros
- Join date:
- September 2014
- Posts:
- 31405
- Downloads:
- 237
- Uploads:
- 471
- Thanks:
- 845
- Thanked:
- 5346 times in 4964 posts
July 3, 2015 at 3:57 am #576198It’s about CSS3 transition, you can add transition property for it:
.acm-container-slide.slide-3 .carousel-inner > .item {
transition-property: opacity;
transition: left 3000ms;
}Saguaros ModeratorSaguaros
- Join date:
- September 2014
- Posts:
- 31405
- Downloads:
- 237
- Uploads:
- 471
- Thanks:
- 845
- Thanked:
- 5346 times in 4964 posts
July 3, 2015 at 3:57 am #642524It’s about CSS3 transition, you can add transition property for it:
.acm-container-slide.slide-3 .carousel-inner > .item {
transition-property: opacity;
transition: left 3000ms;
}Saguaros ModeratorSaguaros
- Join date:
- September 2014
- Posts:
- 31405
- Downloads:
- 237
- Uploads:
- 471
- Thanks:
- 845
- Thanked:
- 5346 times in 4964 posts
July 3, 2015 at 3:57 am #741183It’s about CSS3 transition, you can add transition property for it:
.acm-container-slide.slide-3 .carousel-inner > .item {
transition-property: opacity;
transition: left 3000ms;
} -
AuthorPosts
This topic contains 12 replies, has 2 voices, and was last updated by Saguaros 9 years, 4 months ago.
We moved to new unified forum. Please post all new support queries in our New Forum