Skip to content
  • Recent
  • Tags
  • Popular
  • Users
  • Search
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse

Lay Theme Forum

  1. Home
  2. General Discussion
  3. hover over area shows different picture

hover over area shows different picture

Scheduled Pinned Locked Moved General Discussion
20 Posts 3 Posters 901 Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • B Offline
    B Offline
    Bwise
    wrote on last edited by Bwise
    #7

    Also don't forget to replace $ with jQuery, something I know you have to do with Lay.

    You could alternatively try this code so you can use $, I'm not 100% sure about the jQuery setup that Lay uses so it might not work. A few examples anyway.

    (function($) {
        $(document).ready(function() {
           //jQuery code here
        });
    })(jQuery);
    
    jQuery( document ).ready(function( $ ) {
      // Code that uses jQuery's $ can follow here.
    });
    
    O 1 Reply Last reply
    0
    • B Bwise

      Also don't forget to replace $ with jQuery, something I know you have to do with Lay.

      You could alternatively try this code so you can use $, I'm not 100% sure about the jQuery setup that Lay uses so it might not work. A few examples anyway.

      (function($) {
          $(document).ready(function() {
             //jQuery code here
          });
      })(jQuery);
      
      jQuery( document ).ready(function( $ ) {
        // Code that uses jQuery's $ can follow here.
      });
      
      O Offline
      O Offline
      obliek
      wrote on last edited by
      #8

      @Bwise I got it to work somewhat, thank you so much

      The general concept is there, working great but upon loading the page there is a slow glitchy image loading phase.
      How would I get rid of that?

      I ended up placing all code in the <head> html space and that seemed to make it work, but maybe it makes the page too heavy now?

      I set up a test page at www.a-r-d.eu/155-2 to try this all out, maybe you can spot the issue?

      Anyway I'm well pleased that you got me this far so easily.

      Alex

      1 Reply Last reply
      0
      • O Offline
        O Offline
        obliek
        wrote on last edited by
        #9
        This post is deleted!
        1 Reply Last reply
        0
        • O Offline
          O Offline
          obliek
          wrote on last edited by
          #10

          Excuse me for the frequent updates, but I'm having too much fun figuring this out.

          So far I managed to get rid of the issues I had:

          Figured out that I don't need to use the carousel on the page design itself, just paste the html swinger container. This got rid of the weird glitchy stuff upon loading the website for the first time.

          This in turn also made my menu clickable again, but sadly the container was no longer 100vh -> I fixed this with css

          .swinger-container {
              width: 100vw;
              height: 100vh;
          }
          

          Now there is an "issue" that the site displays the container at small size first before loading fully to 100vh.
          So I'm guessing something is stopping the css from loading instantly.
          Any guesses on how to make this a smooth experience?
          The rest seems quite snappy and fast.

          1 Reply Last reply
          0
          • B Offline
            B Offline
            Bwise
            wrote on last edited by
            #11

            Hi, sorry for the delay. That's great you have it working, I had a look at your page and it looks great.

            Sorry I should have said you don't need the carousel.

            I see what you mean with the images loading in a bit smaller then stretching.

            As the code for the swinger function is wrapped in

            $( document ).ready(function() {
            //swinger code
            }
            

            Until the DOM fully loads, the JS will not execute and it is here that the image is set to 100% width.

            You could give each image within the "swinger-container" a class such has "swinger-img" and then just copy the CSS rules from swinger.js and set it directly in CSS instead? Then just delete the part from swinger.js that changes the CSS.

            Hopefully Lay loads CSS before JS and that way the images should appear full size straight away?

            I don't know if this is the best way to do things but it's what I would try first.

            1 Reply Last reply
            0
            • B Offline
              B Offline
              Bwise
              wrote on last edited by
              #12

              Sorry that was so badly written. Basically my idea is :

              1. Add a class to each image within swinger-container, for example "swinger-img"
              2. Set "swinger-img" class to the following rules :

              position: absolute
              top: 0%
              left: 0%
              width: 100%

              1. Delete the following from swinger.js
              $images.css({
                 "position": "absolute",
                 "top": "0%",
                 "left": "0%",
                 "width": "100%"
              });
              
              O 1 Reply Last reply
              0
              • RichardR Offline
                RichardR Offline
                Richard
                Global Moderator
                wrote on last edited by
                #13

                Dear @Bwise

                Thank you so much for being so Helpful!

                Much appreciated & best wishes
                Richard

                1 Reply Last reply
                0
                • B Bwise

                  Sorry that was so badly written. Basically my idea is :

                  1. Add a class to each image within swinger-container, for example "swinger-img"
                  2. Set "swinger-img" class to the following rules :

                  position: absolute
                  top: 0%
                  left: 0%
                  width: 100%

                  1. Delete the following from swinger.js
                  $images.css({
                     "position": "absolute",
                     "top": "0%",
                     "left": "0%",
                     "width": "100%"
                  });
                  
                  O Offline
                  O Offline
                  obliek
                  wrote on last edited by
                  #14

                  @Bwise

                  I tried it and it seems to work! (maybe dragging the html box to full width on the page editor helped too)
                  there is still some overlapping glitch thing happening when loading the page, but I changed the images to optimized file sizes and dimensions so this seems to make it load faster at least.

                  However I noticed the image either gets clipped at the bottom (instead of full vh) or there is some scrolling so there seems to be a responsive issue going on. You can see the white space beneath the images when resizing the browser a little.

                  I tried to adress it with css but alas no succes yet.

                  this is the code I'm using:

                  .swinger_img {
                      position: absolute;
                      top: 0%;
                      left: 0%;
                      height: 100%;
                      overflow: hidden;
                  }
                  
                  .swinger-container {
                      position: absolute;
                      top: 0;
                      left: 0;
                      height: 100%;
                      overflow: hidden;
                  }
                  

                  In any case, thank you so much for being so helpful!

                  1 Reply Last reply
                  0
                  • B Offline
                    B Offline
                    Bwise
                    wrote on last edited by
                    #15

                    Yea the loading is much better now on my end too.

                    Just looking at the code I can't see the swinger_img class on the images.

                    no-class.jpg

                    I suspect this would be causing the odd behavior or at least adding to it.

                    O 1 Reply Last reply
                    0
                    • B Bwise

                      Yea the loading is much better now on my end too.

                      Just looking at the code I can't see the swinger_img class on the images.

                      no-class.jpg

                      I suspect this would be causing the odd behavior or at least adding to it.

                      O Offline
                      O Offline
                      obliek
                      wrote on last edited by
                      #16

                      @Bwise yes sorry I had removed the class temporarily.
                      I have come to the conclusion that the css is being overridden in some way by the page styling.

                      If I extend the html box to full width it becomes full width to some extent, like we saw until now.

                      If I manipulate the dimensions of the box it becomes small and uncentered again.

                      Maybe there is a different way to add the html on a page?

                      Schermafbeelding 2021-04-09 om 15.31.15.png

                      Schermafbeelding 2021-04-09 om 15.31.41.png

                      1 Reply Last reply
                      0
                      • B Offline
                        B Offline
                        Bwise
                        wrote on last edited by
                        #17

                        So to fix the clipping at the bottom, I just changed height: 100% to height:100vh as you can see in the image below. You can also add object-fit here and play around with that to size the images.

                        I would keep the html box full width within Lay grid.

                        height.jpg

                        O 1 Reply Last reply
                        0
                        • RichardR Offline
                          RichardR Offline
                          Richard
                          Global Moderator
                          wrote on last edited by
                          #18

                          Dear @Bwise

                          Your Awesome, thank you so much for the Posts! :)

                          Sincerely
                          Richard

                          1 Reply Last reply
                          0
                          • B Bwise

                            So to fix the clipping at the bottom, I just changed height: 100% to height:100vh as you can see in the image below. You can also add object-fit here and play around with that to size the images.

                            I would keep the html box full width within Lay grid.

                            height.jpg

                            O Offline
                            O Offline
                            obliek
                            wrote on last edited by
                            #19

                            @Bwise Thanks again for the help!

                            I remade this whole swinger.js contraption outside of laytheme to find the best way to make it adapt to different browser sizes.

                            This is the css now and it seems to work quite well:

                            div.swinger-container {
                                text-align: center; /* ensures the image is always in the h-middle */
                                overflow: hidden; 
                                width: 100vw;
                            height: calc(100vh);
                            
                            }
                            
                            div.swinger-container img {
                                object-fit: cover;
                            -o-object-position: center center;
                            object-position: center center;
                            width: 100%;
                            height: 100% !important;
                              }
                            

                            now I'm off to figuring out how to add the caption to the images, which is a whole other thing (if you have any idea please let me know). On stackoverflow someone suggested using a title attribute in the img scr and adjusting the jquery to display this.
                            But it seems to limit styling and position of the text (afaik)

                            1 Reply Last reply
                            1
                            • RichardR Offline
                              RichardR Offline
                              Richard
                              Global Moderator
                              wrote on last edited by
                              #20

                              Dear @obliek

                              Awesome!! :)

                              1 Reply Last reply
                              0
                              Reply
                              • Reply as topic
                              Log in to reply
                              • Oldest to Newest
                              • Newest to Oldest
                              • Most Votes


                              I also code custom websites or custom Lay features.
                              šŸ’æ Email me here: šŸ’æ
                              info@laytheme.com

                              Before you post:
                              1. When using a WordPress Cache plugin, disable it or clear your cache.
                              2. Update Lay Theme and all Lay Theme Addons
                              3. Disable all Plugins
                              4. Go to Lay Options → Custom CSS & HTML, click "Turn Off All Custom Code", click "Save Changes"

                              This often solves issues you might run into

                              When you post:
                              1. Post a link to where the problem is
                              2. Does the problem happen on Chrome, Firefox, Safari or iPhone or Android?
                              3. If the problem is difficult to explain, post screenshots / link to a video to explain it
                              Online Users
                              M
                              michaelmaeder
                              Forgot your key, lost your files, need a previous Lay Theme or Addon version? Go to www.laykeymanager.com
                              laytheme.com
                              • Login

                              • Don't have an account? Register

                              • Login or register to search.
                              • First post
                                Last post
                              0
                              • Recent
                              • Tags
                              • Popular
                              • Users
                              • Search