묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
안녕하세요~ 팝업로그인사용시 질문을 드리고 싶습니다
2011.04.21 01:38
제가 제 사업체 홈페이지를 제작하고 있습니다. 물론 아마추어인데
제로보드로 제작을 하고 있습니다
그런데 제가 홈페이지에 비메오(vimeo.com) 영상을 퍼왔는데 팝업로그인을 누르니
그 동영상 밑으로 팝업로그인창이 뜨는겁니다 그래서 로그인을 할수가 없습니다
제가 이런 태그나 코딩쪽으론 쑥맥이라 여기에 글을 올리면 알수 있을까해서 올립니다 ㅠㅠ
어떻게 해야 팝업로그인창이 퍼온영상위로 뜨게할수 있을까요?
http://www.theyellow.co.kr/xe/smaple_wedding
팝업로그인 위젯은 어떤분이 만든건지 까먹었습니다..ㅠㅠ
위젯스킨폴더명을 보니 crom_popup인데 혹시 아시는분계시나요..검색을해도 찾기가 힘드네요..
여튼 위와같은 문제 해결방법이 있을까요? ㅠㅠ
도와주세요
제로보드로 제작을 하고 있습니다
그런데 제가 홈페이지에 비메오(vimeo.com) 영상을 퍼왔는데 팝업로그인을 누르니
그 동영상 밑으로 팝업로그인창이 뜨는겁니다 그래서 로그인을 할수가 없습니다
제가 이런 태그나 코딩쪽으론 쑥맥이라 여기에 글을 올리면 알수 있을까해서 올립니다 ㅠㅠ
어떻게 해야 팝업로그인창이 퍼온영상위로 뜨게할수 있을까요?
http://www.theyellow.co.kr/xe/smaple_wedding
팝업로그인 위젯은 어떤분이 만든건지 까먹었습니다..ㅠㅠ
위젯스킨폴더명을 보니 crom_popup인데 혹시 아시는분계시나요..검색을해도 찾기가 힘드네요..
여튼 위와같은 문제 해결방법이 있을까요? ㅠㅠ
도와주세요
댓글 2
-
송동우
2011.04.21 02:16
-
김 무건
2011.04.21 04:33
1. 로그인창이 뜰 때 플래시가 사라지게 한다.
2. 로그인 창 자리를 바꾼다.
1번 방법으로 진행하자면..
http://www.theyellow.co.kr/xe/widgets/login_info/skins/crom_popup_login/js/login.js
//@Author: Adrian "yEnS" Mato Gondelle//@website: www.yensdesign.com//@email: yensamg@gmail.com//@license: Feel free to use it, but keep this credits please!/***************************///SETTING UP OUR POPUP//0 means disabled; 1 means enabled;var popupStatus = 0;//loading popup with jQuery magic!function loadPopup(){//loads popup only if it is disabledif(popupStatus==0){jQuery("#backgroundPopup").css({"opacity": "0.5"});jQuery("#backgroundPopup").fadeIn("fast");jQuery("#popupContact").fadeIn("fast");popupStatus = 1;
jQuery("embed").css("display","none");}}//disabling popup with jQuery magic!function disablePopup(){//disables popup only if it is enabledif(popupStatus==1){jQuery("#backgroundPopup").fadeOut("fast");jQuery("#popupContact").fadeOut("fast");popupStatus = 0;
jQuery("embed").css("display","inline-block");}}//centering popupfunction centerPopup(){//request data for centeringvar windowWidth = document.documentElement.clientWidth;var windowHeight = document.documentElement.clientHeight;var popupHeight = jQuery("#popupContact").height();var popupWidth = jQuery("#popupContact").width();//centeringjQuery("#popupContact").css({"position": "absolute","top": windowHeight/2-popupHeight/2,"left": windowWidth/2-popupWidth/2});//only need force for IE6jQuery("#backgroundPopup").css({"height": windowHeight});}//CONTROLLING EVENTS IN jQueryjQuery(document).ready(function(){//LOADING POPUP//Click the button event!jQuery("#loginbtn").click(function(){//centering with csscenterPopup();//load popuploadPopup();});//CLOSING POPUP//Click the x event!jQuery("#popupContactClose").click(function(){disablePopup();});//Click out event!jQuery("#backgroundPopup").click(function(){disablePopup();});//Press Escape event!jQuery(document).keypress(function(e){if(e.keyCode==27 && popupStatus==1){disablePopup();}});});/* 로그인 후 */function completeLogin(ret_obj, response_tags, params, fo_obj) {var url = current_url.setQuery('act','');location.href = url;}아마.. 되리라.. 믿습니다 ㅡ.ㅡ;
ff4 로 해도 정상적으로 작동됩니다.
이상없는것 같은데요