Viewing 18 posts - 1 through 18 (of 18 total)
  • Author
    Posts
  • #263292

    Hi,

    Is there anyway that the mobile version can display something similar here –

    https://www.dropbox.com/s/ttlfqocynb7eaw7/Screenshot%202014-05-12%2020.18.30.png

    Thank you.

    #263778

    I meant the round animation when you hover your mouse into the image?
    Thanks.

    #264310
    #264515

    Hi Yigit,

    I wanted it to be enabled when viewed using a mobile device.

    Thank you.

    #264596

    Hey!

    Please change the code to following one

    @media only screen and (min-width: 990px) {
    .image-overlay {
     visibility: hidden;
     }}

    Best regards,
    Yigit

    #264599

    I guess your are looking for

    .image-overlay {
     visibility: visible !important;
     }

    But that should not be needed. do you have a link to you site with an example?
    The overlay should be allways activated, even on small screens.

    #264624

    Hi!

    My bad, please add following code to Quick CSS instead

    @media only screen and (max-width: 990px) {
    .image-overlay {
    opacity: 0.6 !important; }}

    Regards,
    Yigit

    #266796

    Hi Yigit,

    Thank you for the support. Where do I add those lines of code?

    #266798

    Hey!

    To Quick CSS field in Enfold theme options > General Styling tab

    Regards,
    Yigit

    #268975

    Hi Yigit,

    I tried the above solution but whenever I still use my iPhone to browse, I still don’t see the beautiful animation.

    Hope you can help. Thank you.

    #269097

    Hi!

    Have you flushed browser cache on your mobile device after applying the code? Can you post the link to your website so we can take a look?

    Cheers!
    Yigit

    #269995
    This reply has been marked as private.
    #271344

    Hey!

    Mobile and touch browsing doesn’t have a hover state. At best it will do a first touch for hover, second touch for activate. For css effects it would then be up to the browser and device to animate it or not.

    Regards,
    Devin

    #271748
    This reply has been marked as private.
    #273494

    Hey!

    Try adding this code to the Quick CSS:

    a:focus .image-overlay .image-overlay-inside{
        -webkit-animation: avia_pop_small 0.5s 1 cubic-bezier(0.175, 0.885, 0.320, 1.275); /* Safari 4+ */
        -moz-animation:    avia_pop_small 0.5s 1 cubic-bezier(0.175, 0.885, 0.320, 1.275); /* Fx 5+ */
        animation:         avia_pop_small 0.5s 1 cubic-bezier(0.175, 0.885, 0.320, 1.275); /* IE 10+ */
    }
    
    .avia_transform a:focus .image-overlay{
        opacity: 0.7 !important;
    }

    Cheers! 
    Josue

    #279417

    Hi Josue,

    Still no luck with the animation using mobile safari for ios.

    #281939

    Hi,

    Try with this code instead:

    .avia_transform a:active .image-overlay{opacity: 0.7 !important;}
    

    That should make the arrow appear when the image is tapped.

    Best regards,
    Josue

    #281949

    Hi!

    Thank you for the update.

    I’m not sure if the image overlay function can work properly on mobile devices since the hover feature works differently and somehow slow downs the click event. That’s why Kriesi disabled it for mobile devices. You might need to investigate this particular issue on your own or hire a freelance developer to modify the overlay function. Please visit Envato Studio or Werkpress for further customization. You can also vote or post the feature on our Feature Requests page.

    Cheers!
    Ismael

Viewing 18 posts - 1 through 18 (of 18 total)
  • You must be logged in to reply to this topic.