who knows AMP (accelerated mobile page)

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • venus
    Confirmed User
    • Jan 2003
    • 3112

    #1

    who knows AMP (accelerated mobile page)

    I am trying to make a background image responsive ( layout="responsive") but cannot find where to put the amp-img tag since the background image is in the css ..anyone know how to do it? this is the page I am working on
    https://www.landofvenus.com/testit2.html
    Muscle/Fitness Adult Affiliate Program
    Since 1997 www.venuscash.com
  • Colmike9
    (>^_^)b
    • Dec 2011
    • 7217

    #2
    Originally posted by venus
    I am trying to make a background image responsive ( layout="responsive") but cannot find where to put the amp-img tag since the background image is in the css ..anyone know how to do it? this is the page I am working on
    https://www.landofvenus.com/testit2.html
    In head:
    <style amp-custom>
    .img-background { background-image: url(/image.jpg); }
    </style>

    Html:
    <pre>
    <div class="img-background"></div>
    </pre>
    Join the BEST cam affiliate program on the internet!
    I've referred over $1.7mil in spending this past year, you should join in.
    I make a lot more money in the medical field in a lab now, fuck you guys. Don't ask me to come back, but do join Chaturbate in my sig, it still makes bank without me touching shit for years..

    Comment

    • venus
      Confirmed User
      • Jan 2003
      • 3112

      #3
      I have that, but I need to add <amp-img src= to the image so I can add the responsive tag so it can auto resize

      Originally posted by Colmike7
      In head:
      <style amp-custom>
      .img-background { background-image: url(/image.jpg); }
      </style>

      Html:
      <pre>
      <div class="img-background"></div>
      </pre>
      Muscle/Fitness Adult Affiliate Program
      Since 1997 www.venuscash.com

      Comment

      • Colmike9
        (>^_^)b
        • Dec 2011
        • 7217

        #4
        This should explain things, starting with "adding images"

        https://webdesign.tutsplus.com/tutor...tch--cms-26158
        Join the BEST cam affiliate program on the internet!
        I've referred over $1.7mil in spending this past year, you should join in.
        I make a lot more money in the medical field in a lab now, fuck you guys. Don't ask me to come back, but do join Chaturbate in my sig, it still makes bank without me touching shit for years..

        Comment

        • venus
          Confirmed User
          • Jan 2003
          • 3112

          #5
          looked at that already, I got the images down, those were easy because they are in the body of the page, the hard part is getting an image in a table to use responsive,like the below...there is no way to make the url background an amp image that I can find.

          table.example-table {
          background-color: rgba(0, 0, 0, 0);
          background-image: url("https://www.landofvenus.com/imagesnew/main_new_BG4.jpg");
          background-repeat: repeat;
          background-attachment: scroll;
          background-clip: border-box;
          background-origin: padding-box;
          background-position-x: 0%;
          background-position-y: 0%;
          background-size: auto auto;
          }

          Originally posted by Colmike7
          This should explain things, starting with "adding images"

          https://webdesign.tutsplus.com/tutor...tch--cms-26158
          Muscle/Fitness Adult Affiliate Program
          Since 1997 www.venuscash.com

          Comment

          Working...