From Design pattern
Jump to: navigation, search
m (Admin8 moved page Refresh by tap to Tap to refresh)
Line 1: Line 1:
화면을 새로고침 하여 보여준다.
+
{{#css:
 +
#mw-content-text h3 span {
 +
font-weight: 600;
 +
padding-left: 0px;
 +
}
  
== Examples ==
+
.mw-headline {
=== 600번 사례 ===
+
font-weight: 600;
* 새로고침 버튼을 tap하여 기사의 타이틀과 이미지를 최신의 것으로 보여준다.
+
}
<videoflash type="vimeo">95630488|300|508</videoflash>
+
 
 +
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... ===
 +
화면이 복잡하여 pull 동작을 하기보다는 button을 활용하는 것이 용이한 경우에 사용되어진다.
 +
 
 +
* pull to refresh 방법에서 일정 범위 이상의 거리를 이동해야 새로고침이 되는데 반해, button을 tap하는 형태는 tap이라는 보다 간단한 동작으로 쉽게 기능을 불러온다.
 +
 
 +
----
 +
 
 +
== Tap to refresh ==
 +
<div id="sun-col">
 +
=== Andriod_BBC ===
 +
{{#Widget:Vimeo|id=95630488|width=300|height=508}}
 +
</div>
  
 
[[category:Refresh screen]]
 
[[category:Refresh screen]]

Revision as of 03:36, 27 May 2014

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

With this pattern, we can solve...

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

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

Tap to refresh

Andriod_BBC