-
AuthorPosts
-
September 2, 2015 at 2:42 pm #377010
Hello,
Is there some code that would engage the Card Element flip/transition on mobile with just the first image tap? Right now (I have an iPhone 5S) it takes 2, and they have to be spaced apart so that the images don’t just magnify a bit, but rather do the flip. I’m hoping it can be more user-friendly in that way; right now it’s frustrating for the user who is trying to get more info on the image, to the point where they might give up on it altogether.
http://www.lauraletchingerart.com/available-work
UPDATE: Because of the issue I’m having with the card element animating smoothing on MacPro laptops, I’m just going to hold off on using that element for now and wait to see if things work better with the next upgrade. So the above “mobile issue” is not so important anymore. But maybe it’s something you guys could add to the request list.
Thank you,
LauraSeptember 2, 2015 at 7:52 pm #377223Hello There,
Thanks for writing in! It takes two taps before the card will flip. You can have on touch events by adding the following JS code in your customizer, Appearance > Customize > Custom > CSS as a temporary fix.
jQuery ( function($) { $(document).ready( function() { $('.x-card-outer').each(function(){ var element = $(this); element.on('touchstart', function() { element.addClass('flipped'); }); element.on('touchend', function() { element.removeClass('flipped'); }); }); }); });
This has already been reported to our developers. This fixed will be included in our next Cornerstone update release.
Please let us know how it goes.
September 2, 2015 at 9:13 pm #377276Thanks for the code. . .
When I put it in the Customizer CSS it didn’t do anything . . . I tried it in the Customizer Javascript, and it was attempting to do it, but was buggy. So I’m just going to wait and see how the card element works for me when the next update comes out since I’ve also got an issue with it animating smoothly on Macbook Pros.
Thanks!
LauraSeptember 2, 2015 at 11:24 pm #377401Hey Laura,
Yes, that maybe a good idea. This has already been reported to our developers. Once the have the fix, it should be included in our next Cornerstone update release.
Thank you for your understanding.
November 19, 2015 at 12:04 pm #671692Hi,
I’m still having this issue on v4.1.1, any idea when/if it will be fixed?
Thanks
November 19, 2015 at 3:12 pm #671930Hi @appleman,
Unfortunately there is not ETA for this but we will let you know as soon as this is sorted. Thank you for understanding.
November 20, 2015 at 5:37 am #672705Ok, thanks
November 20, 2015 at 6:35 am #672762You’re welcome! 🙂
February 6, 2016 at 1:50 pm #783371This reply has been marked as private.February 7, 2016 at 12:29 am #783828Hey George,
I checked your site on my phone and it works fine. Can you give us details the OS and browser version your phone.
Thanks.
February 8, 2016 at 11:45 pm #786582Droid Turbo 2
5.1.1
Chrome 48.0.2564.95February 9, 2016 at 5:36 am #786912Hi George,
Please try adding following CSS code under Custom > CSS in the Customizer:
.touchevents .x-card-outer .x-face-outer { height: auto; }
Thank you!
February 9, 2016 at 10:06 am #787336That worked!
Thank you!
February 9, 2016 at 9:55 pm #788373You’re welcome. Glad we could help. 🙂
March 15, 2016 at 5:50 am #838409So great to be able to find solutions to issues in your forum without having to post each question. Keep up the good work!
-
AuthorPosts