클릭 대상 : 매끄러운 대상을 필터링 할 때 http://kenwheeler.github.io/slick/JQuery와 내 사이트에이 멋진 codepen을 구현했습니다
그리고 : https://codepen.io/ccrch/pen/yyaraz
$('.display-image')
.on('change', function(){
$(this).children('img').css({'transform': 'scale('+ $(this).attr('data-scale') +')'});
})
.on('mouseover', function(){
$(this).children('img').css({'transform': 'scale('+ $(this).attr('data-scale') +')'});
})
.on('mouseout', function(){
$(this).children('img').css({'transform': 'scale(1)','transition': 'transform .3s ease-out'});
})
.on('mousemove', function(e){
$(this).children('img').css({'transform-origin': ((e.pageX - $(this).offset().left)/$(this).width()) * 100 + '% ' + ((e.pageY - $(this).offset().top)/$(this).height()) * 100 +'%'});
})
문제는 내가 매끄러운 슬라이더 객체를 대상으로하고 있습니다 개체 '.display-image'는 더 이상 이러한 클릭 이벤트를 등록하지 않습니다. 이 객체의 대상을 다시 지정하려면 어떻게해야합니까?
슬라이더의 이미지를 for 루프에서 생성되는 방법으로 변경하기; 그래서 나는 유일한 ID를 가질 필요가있다. 그런 다음 jquery는 각각의 ID 또는 와일드 카드로 ID를 확인해야합니다. 그게 다른 걸까요? – Tincdawg
와일드 카드가 작동해야합니다. Ex'$ ('img [name^= "startsWithSomething"]')' – Iceman
Iceman에게 감사 드려요.하지만이 방법은 효과가 없습니다. 다른 제안? – Tincdawg