[Tip] 세팅된 magnific popup에 추가 작업하기
반응형 페이지에서 쓰기 편한 팝업 플러그인으로
magific popup(https://dimsemenov.com/plugins/magnific-popup/)을 자주 쓰는 편인데,
근래에 해당 팝업이 세팅되어있는 페이지의 추가 작업이 있었습니다.
(function($) {
$(window).load(function () {
$.magnificPopup.open({
items: {
src: 'img/이미지명.jpg'
},
type: 'image'
}, 0);
});
})(jQuery);
(function($) {
$(window).load(function () {
$.magnificPopup.open({
items: {
src: $('<a href="#내부링크" class="mfp-img" onClick="closePopup();"><img src="img/이미지명.jpg"></a>'),
type: 'inline'
}
}, 0);
});
})(jQuery);
function closePopup() {
$.magnificPopup.close();
}
var data = [
{
userWebsite_href: '이동할 페이지.html',
userAvatarUrl_img: 'img/팝업 이미지명.png'
}
];
(function($) {
$(window).load(function () {
$.magnificPopup.open({
key: 'my-popup',
items: data,
type: 'inline',
inline: {
markup: '<div class="white-popup"><div class="mfp-close"></div>'+
'<a class="mfp-userWebsite">'+
'<div class="mfp-userAvatarUrl"></div>'+
'</a>'+'<a href="#">'+
'<img src="img/버튼 이미지명.png" class="btn">'+
'</a>'+
'</div>'
},
gallery: {
enabled: true
},
callbacks: {
markupParse: function(template, values, item) {
}
}
}, 0);
});
})(jQuery);
[Tip] 워드프레스 관련 메모2 (0) | 2020.03.18 |
---|---|
[Tip] 워드프레스 관련 메모 (0) | 2020.03.17 |
[Tip] Esc로 팝업창 닫기 (0) | 2017.10.18 |
[Tip] background로 이미지를 넣을 경우 익스플로러에서 흐릿하게 뭉개지는 현상 (0) | 2017.10.10 |
[Tip] modal popup 띄울 때 slick slider가 움직이게 만들기 (0) | 2017.08.29 |