'Jquery & Mobile'에 해당되는 글 42건

  1. 2017.01.17 [Mobile] - 모바일 웹 개발 iOS 브라우스 스크롤 Smooth
  2. 2016.06.10 [CSS] - iPhone 사파리 스크롤 바운스 막기 2
  3. 2016.03.11 [Jquery] - .load() 함수 사용시 익스플로러, 크로스도메인 사용지 동작안될때
  4. 2014.04.11 [Jquery] - Jquery CheckBox 전체 선택
  5. 2013.09.26 [Mobile] - 모바일 웹 메타 태그
  6. 2012.04.30 [Jquery] - Replace 사용시 참조 2
  7. 2012.03.29 [JqueryMobile] - Jquerymobile 모바일에서 이미지 가로 세로 비율별 리사이징 예제 4
  8. 2012.02.02 [JqueryMobile] - Jquerymobile CrossDomain(PHP, ASP) 사용법
  9. 2012.02.01 [JqueryMobile] - 현재페이지 ID 찾기 함수예제
  10. 2012.02.01 [JqueryMobile] - 로딩이미지 출력 함수 예제(JqueryMobile)

[Mobile] - 모바일 웹 개발 iOS 브라우스 스크롤 Smooth

Jquery & Mobile 2017. 1. 17. 21:22
반응형

모바일 웹 ( 아이폰 ) 스크롤 스무즈하게 

-webkit-overflow-scrolling:touch;

반응형
:

[CSS] - iPhone 사파리 스크롤 바운스 막기

Jquery & Mobile 2016. 6. 10. 17:34
반응형

해당 스크롤이 필요한 영역에


/**

 * 스크롤 시작시

 */


style="-webkit-overflow-scrolling:touch;" 


function preventDefault(event){

  event.preventDefault();

};


document.addEventListener("touchmove", preventDefault, false);



/**

 * 스크롤 해제시

 */


document.removeEventListener("touchmove", preventDefault, false);


필히 addEventListener 과 removeEventListener 에 같은 함수 먹여야댐


반응형
:

[Jquery] - .load() 함수 사용시 익스플로러, 크로스도메인 사용지 동작안될때

Jquery & Mobile 2016. 3. 11. 19:22
반응형

$.support.cors = true; // 추가


$("body").load("http://mrkn.tistory.com", function(){


});

반응형
:

[Jquery] - Jquery CheckBox 전체 선택

Jquery & Mobile 2014. 4. 11. 10:26
반응형

function MRKN_CheckBoxAllChecked() {

  var chkBox = $("#Content .searchArea table ul[name=affiliation] li input[name='tree[]']");

  var checked;

  

  if(chkBox.eq(0).prop("checked")) {

    checked = false;

  } else {

    checked = true;

  };

  

  chkBox.each(function(){

    var $this = $(this);

    $this.prop("checked", checked);

  });

}

반응형
:

[Mobile] - 모바일 웹 메타 태그

Jquery & Mobile 2013. 9. 26. 16:09
반응형

<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0. user-scalable=no," />

반응형
:

[Jquery] - Replace 사용시 참조

Jquery & Mobile 2012. 4. 30. 10:59
반응형

010-1234-5678


.replace("-", ""); --> 0101234 - 5678 ( 앞에 한개만 치환됨 )

.replace(/-/g, ""); --> 01012345678  ( 전부 치환됨 )

반응형
:

[JqueryMobile] - Jquerymobile 모바일에서 이미지 가로 세로 비율별 리사이징 예제

Jquery & Mobile 2012. 3. 29. 19:17
반응형

function MRKN_imgProportion($targetWidth, $targetHeight)

{

var DeviceWidth = parseInt($(window).width()); //핸드폰의 가로 사이즈를 구합니다.

var a1 = DeviceWidth * $targetHeight; //이미지 세로사이즈 계산식

var newHeight = (a1 / $targetWidth); //이미지 세로사이즈 계산식

var rtnSize = new Array((DeviceWidth), newHeight);  //리사이징 된 이미지 사이즈 리턴

return rtnSize;

}

$("img").each(function(){ //이미지를 먼저 찾습니다.

var $this = $(this); //선택자를 지정합니다.

var $thisWidth = parseInt($this.css("width")); //선택된 이미지의 가로사이즈를 구합니다.

var $thisHeight = parseInt($this.css("height")); //선택된 이미지의 세로사이즈를 구합니다.

var clientWidth = parseInt($(window).width()); //핸드폰의 가로사이즈를 구합니다.

if($thisWidth > clientWidth) //만약에 이미지 가로가 핸드폰 가로보다 길다면....

{

var rtn = MRKN_imgProportion($thisWidth, $thisHeight); //Function 에 파라미터를 넘김니다

var newWidth = rtn[0]; //Return 된 배열의 0번째 값을 읽어옵니다.

var newHeight = rtn[1];  //Return 된 배열의 1번째 값을 읽어옵니다.

$this.css({  //선택된 이미지에 CSS를 변경합니다.

"width"  : newWidth,

"height" : newHeight

})

}

});


이해가 안가시면 댓글 남겨주세요~

반응형
:

[JqueryMobile] - Jquerymobile CrossDomain(PHP, ASP) 사용법

Jquery & Mobile 2012. 2. 2. 16:30
반응형
jquery-mobile.1.0 version 부터 사용가능합니다.

<script>
   $(window.document).bind('mobileinit', function(){
           $.mobile.allowCrossDomainPages = true;
        })
</script> 

추가

서버 처리페이지

ASP

Response.AddHeader "Access-Control-Allow-Origin", "*"
Response.AddHeader "Access-Control-Allow-Methods", "GET, POST, OPTIONS"
Response.AddHeader "Access-Control-Allow-Credentials", "true"
Response.AddHeader "Access-Control-Allow-Headers","X-Requested-With"
Response.AddHeader "Access-Control-Max-Age", "86400" 

PHP

header('Access-Control-Allow-Origin: *');
header('Access-Control-Allow-Methods: GET, POST, OPTIONS');
header('Access-Control-Allow-Headers: X-Requested-With');
header('Access-Control-Max-Age: 86400'); 

추가하세요~ 
반응형
:

[JqueryMobile] - 현재페이지 ID 찾기 함수예제

Jquery & Mobile 2012. 2. 1. 16:43
반응형

if($.mobile.activePage.attr("id") == "product_view")
{
  alert("true");
}else
{
  alert("False"); 
반응형
:

[JqueryMobile] - 로딩이미지 출력 함수 예제(JqueryMobile)

Jquery & Mobile 2012. 2. 1. 10:56
반응형
제이쿼리모바일 기본 로딩 이미지 출력

  $.mobile.showPageLoadingMsg();

제이쿼리모바일 기본 로딩 이미지 숨김

  
$.mobile.hidePageLoadingMsg();  
 
반응형
: