Поместить картинку в блок динамического слайдера с помощью JS

Всем добра. Столкнулся с проблемой связанной с незнанием JS. Взял готовый слайдер codepen - https://codepen.io/creativeocean/pen/mdROBXx

let xPos = 0;
const images = [
  "https://купитьпнд.рф/id/fittingslide8.jpg",
  "https://купитьпнд.рф/id/fittingbig1.jpg",
  "https://купитьпнд.рф/id/fittingbig2.png",
  "https://купитьпнд.рф/id/fittingbig3.jpg",
  "https://купитьпнд.рф/id/fittingbig4.jpg",
  "https://купитьпнд.рф/id/fittingbig5.jpg",
  "https://купитьпнд.рф/id/fittingbig6.jpg",
  "https://купитьпнд.рф/id/fittingbig7.jpg",
  "https://купитьпнд.рф/id/fittingbig8.jpg",
  "https://купитьпнд.рф/id/fittingbig9.png"
]

gsap.timeline()
    .set('.ring', { rotationY:180, cursor:'grab' }) //set initial rotationY so the parallax jump happens off screen
    .set('.img',  { // apply transform rotations to each image
      rotateY: (i)=> i*-36,
      transformOrigin: '50% 50% 500px',
      z: -500,
      backgroundImage:(i)=>`url("${images[i]}")`,
      backgroundPosition:(i)=>getBgPos(i),
      backfaceVisibility:'hidden'
    })    
    .from('.img', {
      duration:1.5,
      y:200,
      opacity:0,
      stagger:0.1,
      ease:'expo'
    })
    .add(()=>{
      $('.img').on('mouseenter', (e)=>{
        let current = e.currentTarget;
        gsap.to('.img', {opacity:(i,t)=>(t==current)? 1:0.5, ease:'power3'})
      })
      $('.img').on('mouseleave', (e)=>{
        gsap.to('.img', {opacity:1, ease:'power2.inOut'})
      })
    }, '-=0.5')

$(window).on('mousedown touchstart', dragStart);
$(window).on('mouseup touchend', dragEnd);
      

function dragStart(e){ 
  if (e.touches) e.clientX = e.touches[0].clientX;
  xPos = Math.round(e.clientX);
  gsap.set('.ring', {cursor:'grabbing'})
  $(window).on('mousemove touchmove', drag);
}


function drag(e){
  if (e.touches) e.clientX = e.touches[0].clientX;    

  gsap.to('.ring', {
    rotationY: '-=' +( (Math.round(e.clientX)-xPos)%360 ),
    onUpdate:()=>{ gsap.set('.img', { backgroundPosition:(i)=>getBgPos(i) }) }
  });
  
  xPos = Math.round(e.clientX);
}


function dragEnd(e){
  $(window).off('mousemove touchmove', drag);
  gsap.set('.ring', {cursor:'grab'});
}


function getBgPos(i){ //returns the background-position string to create parallax movement in each image
  return ( 100-gsap.utils.wrap(0,360,gsap.getProperty('.ring', 'rotationY')-180-i*36)/360*500 )+'px 0px';
}

и даже нашел в интернете как вставить туда свои картинки, потому как у него было это странно реализовано. Но вот с корректным отображением картинок встал вопрос. Картинки не вмещаются в границы блока и центруются как то странно. Пытался поправить это с помощью css background-size, но он только множит их, что вообще странно. Помогите поместить картинки в границы и по центру блока.


Ответы (0 шт):