묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
이미지 레이지로드 ( image_lazyload ) 관련 질문
2014.05.13 23:16
이미지 레이지로드 ( image_lazyload ) 애드온 관련 질문
이 애드온을 사용하면 이미지뷰어가 제대로 작동이 안 하더군요.
※ 이미지 뷰어를 사용할 경우 이미지 경로(src) 대신에 타이틀(title)로 바꾸면 정상적으로 표시됩니다.
이라고 적혀 있는데 이게 무얼 말 하는 지 모르겠습니다..;;
예를 들어 prettyphoto 애드온의 경우
js/addon.js 파일을 열어
10번째줄과 11번째 줄에 있는
if(!t.parent('a').length) t.wrap('<a href="'+t.attr('src')+'" rel="prettyPhoto[mixed]"></a>');
if(t.parent('a').length && !ifLink) t.parent('a').attr({rel:'prettyPhoto[mixed]',href:''+t.attr('src')+''})
이것을
아래처럼 변경하면 됩니다.
if(!t.parent('a').length) t.wrap('<a href="'+t.attr('title')+'" rel="prettyPhoto[mixed]"></a>');
if(t.parent('a').length && !ifLink) t.parent('a').attr({rel:'prettyPhoto[mixed]',href:''+t.attr('title')+''})
키르마님의 jq_lightbox 애드온의 경우
js/xe.js 을 열어
49번째 줄에 있는
var imgSrc = $img.attr('src');
이것을
var imgSrc = $img.attr('title');
이렇게 변경하면 됩니다.
기타 다른 이미지 뷰어 애드온도 js 파일 찾아보시면 src로 되어 있는 부분이 있을 겁니다.
그것을 title로 변경하시면 됩니다.