반응형

브라우저 화면 드레그 안되게 css

 

.unselectable {
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10+ */
  user-select: none;
}

.all {
  -webkit-user-select: all;
  -ms-user-select: all;
  user-select: all;
}
<head>
<style type="text/css">
.no-drag {
	-ms-user-select: none; 
	-moz-user-select: 
	-moz-none; 
	-webkit-user-select: none; 
	-khtml-user-select: none; 
	user-select:none;
}
</style>
</head>
<body>
   <p class="no-drag">드래그를 할 수 없습니다.</p>
   <p>드래그를 할 수 있습니다.</p>
</body>

 

반응형
반응형

jQuery - Back button Detect, reload  http://www.vvaves.net/jquery-backDetect/

브라우저에서 뒤로가기 버튼 선택시 페이지를 리로드해주는 쿼리. 

단, 라이브러리를 업로드해야 한다. 

https://github.com/ianrogren/jquery-backDetect

 

ianrogren/jquery-backDetect

jQuery backDetect is a jQuery plugin that is used to determine when a user clicks the back button and fire a callback function. - ianrogren/jquery-backDetect

github.com

backDetect

Determining when a user clicks their browser's back button has never been easier with this jQuery plugin. With a quick easy install and minimal set up work you'll be firing callback functions on back button declarations in no time.

View the Project on GitHubianrogren/jquery-backDetect

Using jQuery-backDetect

Can append to any element or class:

$(window).load(function(){ $('body').backDetect(function(){ // Callback function alert("Look forward to the future, not the past!"); }); });</script>

Click the back button to test.

반응형
반응형

네이버 웨일 브라우저 http://whale.naver.com/






.

반응형
반응형

Can I use?: Up-to-date browser support reference



사용할 수 있나? 최신 브라우저 지원 참조~


Can I Use? is a complete table of up-to-date browser support for various modern font-end web technologies. Search by keyword to quickly find what you’re looking for, select specific browsers to compare, or even download the raw support data.

can i use


반응형
반응형
UL - style
브라우저 적용별로 정리되어있는 사이트
반응형

'프로그래밍 > Style & Design' 카테고리의 다른 글

Video in Web Design  (0) 2013.10.14
Google Web Designer  (0) 2013.10.02
20 Resources for Beginner Designers & Developers  (0) 2013.09.27
페르소나, 퍼소나 (persona)  (0) 2013.09.27
http://html5hub.com/  (0) 2013.09.25

+ Recent posts