From Design pattern
Jump to: navigation, search
(Andriod_BBC)
Line 1: Line 1:
{{#css:
+
Tap to refresh는 사용자가 원할때 최신 정보를 업데이트 할 수 있는 하나의 패턴이다. 기능을 실행하기 위한 가장 기본적인 방법인 button을 tap하여 새로고침한다.
#mw-content-text h3 span {
+
font-weight: 600;
+
padding-left: 0px;
+
}
+
 
+
.mw-headline {
+
font-weight: 600;
+
}
+
 
+
span.mw-editsection {
+
font-weight: 200;
+
position: relative;
+
float:right;
+
margin-right: 25px
+
}
+
 
+
span.mw-editsection a {
+
font-weight: 200;
+
}
+
 
+
.art-subpage {
+
background: #F7F7F7;
+
}
+
 
+
#mw-content-text p {
+
padding-top: 0px;
+
padding-bottom: 6px;
+
}
+
 
+
.mw-content-ltr ul {
+
margin: 0.3em 0 0 42px;
+
}
+
 
+
 
+
hr {
+
margin-top: 0px;
+
margin-bottom: 0px;
+
margin-left: -31px;
+
width: 720px;
+
border-bottom: 1px solid #E0E0DD;
+
border-left: 0px;
+
border-right: 0px;
+
border-top: 30px solid #F7F7F7;
+
}
+
<!--
+
#sun-col {
+
-webkit-column-count:2; /* Chrome, Safari, Opera */
+
-moz-column-count:2; /* Firefox */
+
column-count:2;
+
}
+
 
+
#sun-col p {
+
padding-left: 0px;
+
-->
+
}
+
 
+
}}
+
Tap to refresh는 사용자가 원할때 최신 정보를 업데이트 할 수 있는 하나의 pattern이다. 기능을 실행하기 위한 가장 기본적인 방법인 button을 tap하여 새로고침한다.
+
  
 
=== With this pattern, we can solve... ===
 
=== With this pattern, we can solve... ===

Revision as of 08:36, 26 June 2014

Tap to refresh는 사용자가 원할때 최신 정보를 업데이트 할 수 있는 하나의 패턴이다. 기능을 실행하기 위한 가장 기본적인 방법인 button을 tap하여 새로고침한다.

With this pattern, we can solve...

화면이 복잡하여 pull 동작을 하기보다는 button을 활용하는 것이 용이한 경우에 사용되어진다.

  • pull to refresh 방법에서 일정 범위 이상의 거리를 이동해야 새로고침이 되는데 반해, button을 tap하는 형태는 tap이라는 보다 간단한 동작으로 쉽게 기능을 불러온다.

Tap to refresh

Andriod_BBC