-
AuthorPosts
-
Leon Cuzzilla Friend
Leon Cuzzilla
- Join date:
- September 2014
- Posts:
- 156
- Downloads:
- 4
- Uploads:
- 35
- Thanks:
- 44
- Thanked:
- 5 times in 1 posts
April 26, 2015 at 2:51 am #205828I am using ACM Gallery Style 2 – Animation Hover – Flip
It all works great until the screen is resized responsively and it doesn’t flip anymore.Any ideas why?
Ninja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
Leon Cuzzilla FriendLeon Cuzzilla
- Join date:
- September 2014
- Posts:
- 156
- Downloads:
- 4
- Uploads:
- 35
- Thanks:
- 44
- Thanked:
- 5 times in 1 posts
April 27, 2015 at 11:47 pm #568588Ok no worries – let me know when you get something sorted as I love the flip effect on the gallery and we want to get the site up and finished soon so we don’t drop down google rankings with a site that isn’t mobile friendly!
Leon Cuzzilla FriendLeon Cuzzilla
- Join date:
- September 2014
- Posts:
- 156
- Downloads:
- 4
- Uploads:
- 35
- Thanks:
- 44
- Thanked:
- 5 times in 1 posts
April 27, 2015 at 11:47 pm #733682Ok no worries – let me know when you get something sorted as I love the flip effect on the gallery and we want to get the site up and finished soon so we don’t drop down google rankings with a site that isn’t mobile friendly!
Leon Cuzzilla FriendLeon Cuzzilla
- Join date:
- September 2014
- Posts:
- 156
- Downloads:
- 4
- Uploads:
- 35
- Thanks:
- 44
- Thanked:
- 5 times in 1 posts
May 26, 2015 at 11:54 am #571745Any news yet?
Ninja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
May 27, 2015 at 10:25 am #571951<em>@imatilda 474965 wrote:</em><blockquote>Any news yet?</blockquote>
I’m so sorry about delay to response for you because I could not receive any info from development team, I pinged them again and they told me the effect as on desktop is not supported in mobile layout :((
1 user says Thank You to Ninja Lead for this useful post
Leon Cuzzilla FriendLeon Cuzzilla
- Join date:
- September 2014
- Posts:
- 156
- Downloads:
- 4
- Uploads:
- 35
- Thanks:
- 44
- Thanked:
- 5 times in 1 posts
May 29, 2015 at 6:39 am #572267Ok, will have to rethink as the images won’t make sense without the words on the flip side! No worries. Thanks
Leon Cuzzilla FriendLeon Cuzzilla
- Join date:
- September 2014
- Posts:
- 156
- Downloads:
- 4
- Uploads:
- 35
- Thanks:
- 44
- Thanked:
- 5 times in 1 posts
May 29, 2015 at 6:39 am #737304Ok, will have to rethink as the images won’t make sense without the words on the flip side! No worries. Thanks
kjlarski JATCkjlarski
- Join date:
- October 2010
- Posts:
- 96
- Downloads:
- 3
- Uploads:
- 6
- Thanks:
- 6
- Thanked:
- 15 times in 1 posts
June 30, 2015 at 5:19 pm #575925Hi –
We are trying to do something similar, and hopefully simple, in mobile. On desktop, the mouse-hover causes the image to ‘flip’. How would we change mobile behavior so one ‘tap’ causes flip?
Thanks,
Kevinkjlarski JATCkjlarski
- Join date:
- October 2010
- Posts:
- 96
- Downloads:
- 3
- Uploads:
- 6
- Thanks:
- 6
- Thanked:
- 15 times in 1 posts
June 30, 2015 at 5:19 pm #642254Hi –
We are trying to do something similar, and hopefully simple, in mobile. On desktop, the mouse-hover causes the image to ‘flip’. How would we change mobile behavior so one ‘tap’ causes flip?
Thanks,
Kevinkjlarski JATCkjlarski
- Join date:
- October 2010
- Posts:
- 96
- Downloads:
- 3
- Uploads:
- 6
- Thanks:
- 6
- Thanked:
- 15 times in 1 posts
June 30, 2015 at 5:19 pm #740914Hi –
We are trying to do something similar, and hopefully simple, in mobile. On desktop, the mouse-hover causes the image to ‘flip’. How would we change mobile behavior so one ‘tap’ causes flip?
Thanks,
KevinNinja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
July 3, 2015 at 2:21 am #576177@imatilda: You can fix the problem on your site with the solution below
Open templates/uber/acm/gallery/css/style.css file
find and change
@media (min-width: 992px) {
.acm-gallery.style-flip .item:hover .item-image {
transform: perspective(800px) rotateY(-179.9deg);
-webkit-transform: perspective(800px) rotateY(-179.9deg);
}
.acm-gallery.style-flip .item:hover .item-details {
opacity: 1;
filter: alpha(opacity=100);
transform: perspective(800px) rotateY(0deg);
-webkit-transform: perspective(800px) rotateY(0deg);
}
}
to
.acm-gallery.style-flip .item:hover .item-image {
transform: perspective(800px) rotateY(-179.9deg);
-webkit-transform: perspective(800px) rotateY(-179.9deg);
}
.acm-gallery.style-flip .item:hover .item-details {
opacity: 1;
filter: alpha(opacity=100);
transform: perspective(800px) rotateY(0deg);
-webkit-transform: perspective(800px) rotateY(0deg);
}
@kjlarski: You can appear the same above solution on your site.1 user says Thank You to Ninja Lead for this useful post
Ninja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
July 3, 2015 at 2:21 am #642503@imatilda: You can fix the problem on your site with the solution below
Open templates/uber/acm/gallery/css/style.css file
find and change
@media (min-width: 992px) {
.acm-gallery.style-flip .item:hover .item-image {
transform: perspective(800px) rotateY(-179.9deg);
-webkit-transform: perspective(800px) rotateY(-179.9deg);
}
.acm-gallery.style-flip .item:hover .item-details {
opacity: 1;
filter: alpha(opacity=100);
transform: perspective(800px) rotateY(0deg);
-webkit-transform: perspective(800px) rotateY(0deg);
}
}
to
.acm-gallery.style-flip .item:hover .item-image {
transform: perspective(800px) rotateY(-179.9deg);
-webkit-transform: perspective(800px) rotateY(-179.9deg);
}
.acm-gallery.style-flip .item:hover .item-details {
opacity: 1;
filter: alpha(opacity=100);
transform: perspective(800px) rotateY(0deg);
-webkit-transform: perspective(800px) rotateY(0deg);
}
@kjlarski: You can appear the same above solution on your site.1 user says Thank You to Ninja Lead for this useful post
Ninja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
July 3, 2015 at 2:21 am #741162@imatilda: You can fix the problem on your site with the solution below
Open templates/uber/acm/gallery/css/style.css file
find and change
@media (min-width: 992px) {
.acm-gallery.style-flip .item:hover .item-image {
transform: perspective(800px) rotateY(-179.9deg);
-webkit-transform: perspective(800px) rotateY(-179.9deg);
}
.acm-gallery.style-flip .item:hover .item-details {
opacity: 1;
filter: alpha(opacity=100);
transform: perspective(800px) rotateY(0deg);
-webkit-transform: perspective(800px) rotateY(0deg);
}
}
to
.acm-gallery.style-flip .item:hover .item-image {
transform: perspective(800px) rotateY(-179.9deg);
-webkit-transform: perspective(800px) rotateY(-179.9deg);
}
.acm-gallery.style-flip .item:hover .item-details {
opacity: 1;
filter: alpha(opacity=100);
transform: perspective(800px) rotateY(0deg);
-webkit-transform: perspective(800px) rotateY(0deg);
}
@kjlarski: You can appear the same above solution on your site.1 user says Thank You to Ninja Lead for this useful post
Leon Cuzzilla FriendLeon Cuzzilla
- Join date:
- September 2014
- Posts:
- 156
- Downloads:
- 4
- Uploads:
- 35
- Thanks:
- 44
- Thanked:
- 5 times in 1 posts
July 5, 2015 at 11:23 am #576362ok thanks will give that a go and let you know
-
AuthorPosts
This topic contains 17 replies, has 3 voices, and was last updated by Leon Cuzzilla 9 years, 4 months ago.
We moved to new unified forum. Please post all new support queries in our New Forum