UI: Link Element

웹표준 2008. 6. 11. 23:10

01Top 10 Ways to Turn Hyperlinks into Hyper-Clicks

01) 넓은 Hit Area (to add padding)
Increase the "hit area" on your links, especially in your navigation
02) Underline links, but nothing else
03) Use hover and visited link states
04) Use the title attribute. (tool tip)
05) Use one color, and try to make it blue.
06) Add visual cues to grab attention.
07) Tell Visitors where they are in your navigation
08) Links, inside and out (외부링크 & 내부링크)
09) Use human-friendly URLs
10) Use better content within your links.

02. 4 Uber Cool CSS Techniques For Links

URL : http://cssglobe.com/post/1614/4-uber-cool-css-techniques-for-links

03. Scrollovers (a new way of linking)
URL : http://www.scrollovers.com

04. Why Not to Underline Hyperlinks
http://impresslab.com/design/why-not-to-underline-hyperlinks/



 

'웹표준' 카테고리의 다른 글

CSS Font & Text  (0) 2008.06.20
UI: Definition List & (Un)ordered List  (0) 2008.06.20
UI: Link Element  (0) 2008.06.11
CSS Media Queries  (0) 2008.06.10
CSS - Positioning & Z-index  (0) 2008.06.07
input-element type="button" vs. button-element  (0) 2008.06.07

CSS Media Queries

웹표준 2008. 6. 10. 20:31
- [w3] Media Queries
- [w3] Media types
- [MDN] CSS media queries  
- [tool] MQtest.io  

* Responsive Web Design with Physical Units  

01. Combine Your CSS Media Styles Into One File

URL: http://davidwalsh.name/combine-css-media-styles-file
@media all{  
    body {color:#666;font:13px arial, helvetica, sans-serif;padding:20px 0 30px 0;}  
}
@media print{  
    body {color:#000;font:12px arial, helvetica, sans-serif;padding:0;}  
}


@media only screen and (max-width: 480px) {
  /* small screen styles */
}
@media only screen and (min-width: 481px) {
  /* large screen styles */
}
@media (-webkit-min-device-pixel-ratio: 1.5),
       (-o-min-device-pixel-ratio: 3/2),
       (min--moz-device-pixel-ratio: 1.5),
       (min-device-pixel-ratio: 1.5) {
  /* high resolution styles */
}


02. Hartija - CSS Print Framework
URL: http://code.google.com/p/hartija/


- CSS3 Media Queries Tutorial: Part1  Part2
- [Library] css3-mediaqueries-js
- Adaptive & Mobile Design with CSS3 Media Queries
- 41 Inspirational Responsive Web Design Using CSS3 Media Queries
- CSS Media Queries & Using Available Space
- Different Stylesheets for Differently Sized Browser Windows
- Hardboiled CSS3 Media Queries
- [NHN] CSS3 media query에 대하여
- [library] Responsd: a fast & lightweight polyfill for min/max-width CSS3 Media Queries (for IE6-8)


* Print
- [w3] CSS Print Profile
- [ms] CSS How-to: Optimize Pages for Printing Using CSS
- 15 Important CSS Print Page Tricks
- How To Create A Simple Print CSS For Your Site
- Handy Tips for Creating a Print CSS Stylesheet
- Advanced CSS Printing - Using CSS Page Breaks 
- CSS Paged Media - @page Rule
- Make your website printable with CSS  




'웹표준' 카테고리의 다른 글

UI: Definition List & (Un)ordered List  (0) 2008.06.20
UI: Link Element  (0) 2008.06.11
CSS Media Queries  (0) 2008.06.10
CSS - Positioning & Z-index  (0) 2008.06.07
input-element type="button" vs. button-element  (0) 2008.06.07
robots.txt  (0) 2008.06.07

UI: Pagination CSS

웹표준/쇼케이스 2008. 6. 7. 22:04
마침 Pagination CSS 와 관련된 글이 있어 링크한다.
* some styles for your pagination

URL#1 :
woork.blogspot.com/2008/03/perfect-pagination-style-using-css.html
URL#2 : www.dynamicdrive.com/style/csslibrary/item/css_pagination_links/
URL#3 : www.dynamicdrive.com/dynamicindex17/virtualpagination.htm

사용자 삽입 이미지

- Easy Paginate - jQuery plugin for pagination
- Some styles for your pagination
- Pagination Gallery: Examples And Good Practices
- Pagination 101 




'웹표준 > 쇼케이스' 카테고리의 다른 글

UI: Message Box  (0) 2008.06.17
UI: CSS Blockquotes  (0) 2008.06.13
UI: Pagination CSS  (0) 2008.06.07
UI: Tooltip  (0) 2008.06.05
UI: Tab CSS, JavaScript  (0) 2008.05.17
UI: Sliders, Scrollers and Scrollbars  (0) 2008.05.08

CSS - Positioning & Z-index

웹표준 2008. 6. 7. 21:46

CSS에서 가장 멋진 속성중의 하나가 Position 입니다.
또한 브라우저(browser) 좌표계의 이해가 필요한 속성이기도 합니다.
위치와 관련된 속성은 크게 position과 float으로 나타낼 수 있는데 CSS를 공부하는데 있어 이해력(?)을 가장 필요로 하며, 동시에 재미있습니다.

position의 속성값으로는 기본값인 static, 옵션으로 relative, absolute 그리고 fixed 가 있습니다.
옵션값인 relative와 absolute은 단어 뜻에서 느끼겠지만, 상대적인 위치와 절대적인 위치 값을 가질 수 있도록 합니다.  고정값을 갖도록 하는 fixed는 효과적으로 사용할 수 있지만 IE에서 사용하는데 문제점이 있습니다.(DOM 속성인 offset 값을 이용하여 IE에서 fixed 효과를 나타낼 수 있습니다.)

상대값과 절대값에서 가장 중요한 것은 기준값을 파악하는 것입니다. 
즉 어디가 좌표계의 영점(0,0)이냐는 것입니다.
상대값은 원래 있어야 할 자리로 부터의 이동(shift)된 거리를 나타내게 되니 해당 개체의 왼쪽 상단지점이 영점이 됩니다. 
반면에 절대값은 해당 개체가 위치한 좌표계의 영점에서 부터의 이동을 나타냅니다.  기본적인 브라우저의 영점은 왼편 상단지점을 (0,0)으로 합니다.

여기서 재미있는것은 상대값이 지정된 곳에서의 좌표계 영점은 브라우저 영점에서 상대값이 지정된 영역의 영점으로 이동한다는 것입니다.
그래서 상대값이 지정된(postion:relative;) 영역이하의 식구들은 브라우저 영점을 옮겨진 이곳으로 이해하고 있다는 것이지요.. 가령 브라우저 영점으로 부터 상대값이 주어진 영역의 위치가 (50,50)으로 옮겨졌고 그 내부에 절대값이 지정(position:absolute;)된 개체가 있다면 이 절대값의 기준이 되는 좌표가 (0,0)이 아니라 (50,50)으로 바꿔지게 됩니다.

예를들면,
<style type="text/css">
 .absolute {
      position: absolute;
      left: 50px;
      top: 50px;
 }
 .relative {
      position: relative;
      left: 50px;
      top: 50px;
 }
</style>

<div class="relative">
 <div class="absolute">
  <img src="image.jpg" alt="alt" title="title" />
 </div>
</div>


에서 이미지의 시작점 좌표는 (100,100)이 됩니다.

[출처] www.smashingmagazine.com



'웹표준' 카테고리의 다른 글

UI: Link Element  (0) 2008.06.11
CSS Media Queries  (0) 2008.06.10
CSS - Positioning & Z-index  (0) 2008.06.07
input-element type="button" vs. button-element  (0) 2008.06.07
robots.txt  (0) 2008.06.07
Web Accessibility Resources  (0) 2008.06.05

input-element type="button" vs. button-element

웹표준 2008. 6. 7. 21:38

HTML에서 제공되는 버튼 형식은 일반적인 <a>과 <form> 식구들 중 <input type="button">, <input type="submit">, <input type="image"> 가 있다.  그리고 Form 버튼 형식에서 개선된 <button> 이 있다. <button>은 Form 버튼과 달리 내부에 이미지 등의 Content를 가질 수 있다.

<button name="submit" value="submit" type="submit">
    Send <img src="/images/logo.gif" alt="wow" />
</button>


Form 버튼의 아쉬운 점이 있는데, 모양이 좀 빠진다..
Sprite 형태의 여러가지 버튼 이미지를 넣고 싶은데 잘 안된다.

아래 글은 이와 관련하여 해결방법을 소개하고 있는데 꽤 유익하다..^^
URL :
trevordavis.net/blog/tutorial/input-vs-button/

사용자 삽입 이미지


웹표준이 적용되는 브라우저에서는 pseudo-selector(:hover)를 이용해서 Sprite 이미지 처리를  쉽게 할 수 있지만, IE에서는 따로 처리 해줘야 한다.

예제에서는
<!--[if IE]>
<style type="text/css">
    input.buttons { font-size: 0; line-height: 25px; }
</style>
<![endif]-->
<!--[if lt IE 7]>
<script type="text/javascript" src="/js/jquery.js"></script>
<script type="text/javascript">
    $(document).ready(function(){
        $('input.buttons').hover(function() {
            $(this).css('background-position','0 -25px');
        },
        function() {
            $(this).css('background-position','0 0');
        });
   });
</script>
<![endif]-->


[추가]
<input type="image">에서의 꼼수를 소개하자면,
[<input type="image" src="/images/trasparent.gif" class="sprite" alt="전송" />]
의 코드에서 src에 사용된 이미지를 sprite 이미지 크기와 같은 투명한 것으로 하여 hover 이벤트를 처리할 수 있다.





'웹표준' 카테고리의 다른 글

CSS Media Queries  (0) 2008.06.10
CSS - Positioning & Z-index  (0) 2008.06.07
input-element type="button" vs. button-element  (0) 2008.06.07
robots.txt  (0) 2008.06.07
Web Accessibility Resources  (0) 2008.06.05
Daum UI DevDay 2008  (0) 2008.05.31

robots.txt

웹표준 2008. 6. 7. 18:39

Web Accessibility Resources

웹표준 2008. 6. 5. 22:23

UI: Tooltip

웹표준/쇼케이스 2008. 6. 5. 21:04
툴팁(toolTip)을 보여주는 자바스크립트 아이디어 입니다.

01. Fading JavaScript Tooltips 2kb
URL:
www.leigeber.com/2008/06/javascript-tooltip/
사용자 삽입 이미지


02. Bubble Tooltips
URL:
web-graphics.com/mtarchive/001717.php
사용자 삽입 이미지


03. prototip
URL:
www.nickstakenburg.com/projects/prototip2/
사용자 삽입 이미지


- 20 Useful Free jQuery Tooltip Plugins  
- Responsive and Mobile-Friendly Tooltip  


- UniTip
-
Easiest Tooltip and Image Preview Using jQuery
- 6 Tooltips Scripte - kleine Notizen an Links und Formularen
- Create Simple Tooltips with CSS and jQuery
- 30+ Tooltips Scripts With JavaScript, Ajax & CSS
- 12 Plugins to create tooltips with popular javascript frameworks
- Useful jQuery Tooltip Plugins That You Could Use On Your Web Projects






'웹표준 > 쇼케이스' 카테고리의 다른 글

UI: CSS Blockquotes  (0) 2008.06.13
UI: Pagination CSS  (0) 2008.06.07
UI: Tooltip  (0) 2008.06.05
UI: Tab CSS, JavaScript  (0) 2008.05.17
UI: Sliders, Scrollers and Scrollbars  (0) 2008.05.08
Step Menu  (0) 2008.05.03

Daum UI DevDay 2008

웹표준 2008. 5. 31. 13:02
Daum UI DevDay 2008 다녀옴..
여러가지로 도움 많이 받은 시간..
[
발표자료]

사용자 삽입 이미지

사용자 삽입 이미지

- 13회 Daum DevDay 


- Daum UI DevDay 2008 행사 홈
- Daum 개발자 네트워크 dna.daum.net
- Daum UI 개발자 블로그 blog.daum.net/uidev
- 국내 UX 블로그 리스트  uxfactory.com/201
- Naver Developer Center  dev.naver.com

- Daum UIDev Guideline  ui.daum.net
- Naver 웹 표준화 가이드 html.nhndesign.com
- UI Patterns  ui-patterns.com
- UX Factory 
uxfactory.com
- UX Magazine  www.uxmag.com
- Yahoo Design Pattern Library  developer.yahoo.com/ypatterns/
- UITest.com: Web Development Tools
- 10 Beautiful Web UI Libraries



'웹표준' 카테고리의 다른 글

robots.txt  (0) 2008.06.07
Web Accessibility Resources  (0) 2008.06.05
Daum UI DevDay 2008  (0) 2008.05.31
iframe  (0) 2008.05.27
테이블 스크롤  (0) 2008.05.26
CSS Bugs  (0) 2008.05.25

iframe

웹표준 2008. 5. 27. 11:15

데이터(or Content)를 비동기로 다루기 위한 방법으로 많이 사용되는 <iframe> .
inline frame으로 구분된다.

<Iframe> 선택 [참고 - quirksmode.org]

document.getElementById('testiframe2').src
document.getElementById('testiframe2').location.href
frames['testiframe2'].src
frames['testiframe2'].location.href
frames[1].location.href
frames[1].window.location.href
frames['testiframe2'].window.location.href
target="testiframe2" (loads only page2, not page1)

* How to Inject Custom HTML and CSS into an iframe

- window.postMessage  
- Cross-window messaging with postMessage  
- Cross-Domain Messaging With postMessage  

- Remote Scripting with IRAME - Apple
- jQuery Iframe Sizing
- UFrame: goodness of UpdatePanel and IFRAME combined
- Introducing HTML inot a iframe and getting it back
- Making sure hidden frames are hidden
- The Iframe Cross-Domain Policy Problem
- sykari.net/stuff/iframe/ 
- Breaking Out of Frames JavaScript
-
Iframe 프레임 높이 조절

2008/03/04 - [웹표준] - XHTML 태그공부 여기서 하세요. - htmlPlayground.com
2008/02/20 - [JavaScript] - XMLHttpRequest (XHR) 에 대하여 알아보자..
2009/07/20 - [backEnd] - Cross-Domain Request  
2012/12/12 - [javascript] - Framebusting


 

'웹표준' 카테고리의 다른 글

Web Accessibility Resources  (0) 2008.06.05
Daum UI DevDay 2008  (0) 2008.05.31
iframe  (0) 2008.05.27
테이블 스크롤  (0) 2008.05.26
CSS Bugs  (0) 2008.05.25
Equal Height Columns  (0) 2008.04.16

테이블 스크롤

웹표준 2008. 5. 26. 20:46

제일 귀찮은 것중의 하나가 바로 테이블(table) 이지 않나 싶습니다.

테이블에 나타낼 데이터가 아주 많을 경우 <thead>와 <tfoot>의 내용은 보이도록 하면서 <tbody> 영역을 스크롤 하도록 하면 꽤 보기 좋은데, 다음의 예에서 이를 생각해 볼 수 있겠습니다.

01.
www.cssplay.co.uk/menu/tablescroll.html

사용자 삽입 이미지


 

'웹표준' 카테고리의 다른 글

Daum UI DevDay 2008  (0) 2008.05.31
iframe  (0) 2008.05.27
테이블 스크롤  (0) 2008.05.26
CSS Bugs  (0) 2008.05.25
Equal Height Columns  (0) 2008.04.16
meta-element in (X)HTML  (0) 2008.03.12

CSS Bugs

웹표준 2008. 5. 25. 00:37
IE Bug로 인해 추가로 생각해야 하는 부분이 꽤 있다.
아래 사이트는 여러가지 IE Bug를 소개하고 있다.

http://www.positioniseverything.net/explorer.html

01. Explorer z-index bug (IE6, IE7)
URL :
www.quirksmode.org/bugreports/archives/2006/01/Explorer_z_index_bug.html

사용자 삽입 이미지

왼편이 IE, 오른쪽이 Firefox 브라우저

<div id="container" style="position:relative;">
   <div id="box1" style="position:absolute;">z-index: 20;</div>
</div>
<div id="box2" style="position:absolute;">z-index: 10;</div>



2008/02/27 - [웹표준] - CSS Techniques (Tips, Hacks)
2008/02/25 - [웹표준] - CSS 토픽 (Topics)
2008/02/23 - [웹표준] - CSS를 잘 쓰기 위한 아이디어..
2008/05/14 - [Web] - IE6, IE7 동시에 사용하는 방법
2009/02/12 - [웹표준] - 이젠 IE6을 버릴때가 왔다.
2009/09/16 - [web/tips] - IE6 Hack & Tip


'웹표준' 카테고리의 다른 글

iframe  (0) 2008.05.27
테이블 스크롤  (0) 2008.05.26
CSS Bugs  (0) 2008.05.25
Equal Height Columns  (0) 2008.04.16
meta-element in (X)HTML  (0) 2008.03.12
(X)HTML 태그공부 여기서 하세요.  (0) 2008.03.04

UI: Tab CSS, JavaScript

웹표준/쇼케이스 2008. 5. 17. 15:14
많이 사용하는 메뉴 패턴 중에서 탭메뉴를 소개한 글이 있어 내용 일부 옮깁니다..
원래 글은 [
37+ Great Ajax, CSS Tab-Based Interfaces] 입니다.

01. Easy Tabs 1.2 - now with autochange
URL: www.kollermedia.at/archive/2007/07/10/easy-tabs-12-now-with-autochange/

02. jQuery UI Tabs
URL: stilbuero.de/jquery/tabs_3/
URL 2 (nested tab): blog.cutterscrossing.com/index.cfm/2007/6/15/Updated-JQuery-Nested-Tab-Set-with-Demo

03. fancy sliding tab menu v2
URL: www.andrewsellick.com/64/fancy-sliding-tab-menu-v2

04. Cross browser tabbed pages with embeded links
URL: www.cssplay.co.uk/menu/one_page

05. Simplified CSS Tabs
URL: www.simplebits.com/bits/css_tabs.html
URL: labs.silverorange.com/archives/2004/may/updatedsimple

06. 30+ Animated Tab-Based Interface and Accordion Scripts
URL: dzineblog.com/2008/10/30-animated-tab-interface-and-accordion-scripts.html

2008/02/27 - [웹표준/쇼케이스] - 네비게이션, 메뉴 CSS

- Matt Black Tabs (easy tab)
- [즐겨찾기] Pattern Tap
- 5 Steps for the Perfect Tabbed Navigation Menu
- 50+ Nice Clean CSS Tab-Based Navigation Scripts
- Best 20 Website Navigation Menu
- CSS Library: Horizontal CSS Menus - Dynamic Drive CSS Library
- 30 CSS and JavaScript Tabs Solutions
- 28 Excellent Tutorials Help You Create Tabbed Content With CSS or JavaScript
- 30 Useful jQuery Tabs Tutorials
- CSS3 tabs with beveled corners
- Tabs with Round Out Borders 
- Google Play's minimal tabs with CSS3 & jQuery 


'웹표준 > 쇼케이스' 카테고리의 다른 글

UI: Pagination CSS  (0) 2008.06.07
UI: Tooltip  (0) 2008.06.05
UI: Tab CSS, JavaScript  (0) 2008.05.17
UI: Sliders, Scrollers and Scrollbars  (0) 2008.05.08
Step Menu  (0) 2008.05.03
CSS Form Showcase  (0) 2008.04.30

UI: Sliders, Scrollers and Scrollbars

웹표준/쇼케이스 2008. 5. 8. 19:13
Slider, Scroller, Scrollbar 에 대한 정보를 다룬다.

30+ JavaScript/Ajax Techniques for Sliders, Scrollers and Scrollbars

01. Accessible Unobtrusive Slider
URL:
www.frequency-decoder.com/demo/slider-revisited/
사용자 삽입 이미지

02. Ultimate JavaScript Slider and Scroller
URL#1:
www.leigeber.com/2008/05/ultimate-javascript-scroller-and-slider/
URL#2: cssglobe.com/lab/easyscroll/
URL#3: css-tricks.com/creating-a-slick-auto-playing-featured-content-slider/ 
 

사용자 삽입 이미지
사용자 삽입 이미지

Featured Content Slider


03. Developing an accessible slider
URL :
www.filamentgroup.com/lab/developing_an_accessible_slider/ 
 

사용자 삽입 이미지





'웹표준 > 쇼케이스' 카테고리의 다른 글

UI: Tooltip  (0) 2008.06.05
UI: Tab CSS, JavaScript  (0) 2008.05.17
UI: Sliders, Scrollers and Scrollbars  (0) 2008.05.08
Step Menu  (0) 2008.05.03
CSS Form Showcase  (0) 2008.04.30
UI: 튼튼한 CSS Button 만들기  (4) 2008.03.12

Step Menu

웹표준/쇼케이스 2008. 5. 3. 18:45

단계(step)를 표현할 때 좋은 방법이 있다..
Step Menu 라는.. (demo)

사용자 삽입 이미지


이것을 jQuery와 물려 쓴 예제도 있다..
jQuery Step Menu 라는 .. (demo)

사용자 삽입 이미지





'웹표준 > 쇼케이스' 카테고리의 다른 글

UI: Tab CSS, JavaScript  (0) 2008.05.17
UI: Sliders, Scrollers and Scrollbars  (0) 2008.05.08
Step Menu  (0) 2008.05.03
CSS Form Showcase  (0) 2008.04.30
UI: 튼튼한 CSS Button 만들기  (4) 2008.03.12
이미지 갤러리  (0) 2008.03.05

CSS Form Showcase

웹표준/쇼케이스 2008. 4. 30. 19:21
사용자 삽입 이미지사용자 삽입 이미지
사용자 삽입 이미지

- Button Style

URL: www.dynamicdrive.com/style/csslibrary/item/stylish-submit-buttons/
사용자 삽입 이미지

Button Style

 
- CSS-Form
URL:
woork.blogspot.com/2008/06/clean-and-pure-css-form-design.html 
URL:
woork.blogspot.com/2008/06/form-elements-design-using-css-and-list.html
사용자 삽입 이미지

- Custom Form Elements
URL#1:
ryanfait.com/resources/custom-checkboxes-and-radio-buttons/
URL#2: www.chriserwin.com/scripts/crir/index.php
URL#3: www.no-margin-for-errors.com/projects/prettyCheckboxes/
사용자 삽입 이미지

- 15 Creative Free Login Form with PSD

- Accessible Forms using WCAG 2.0
- Accessible HTML/XHTML Forms - The Web Standards Project
- Accessible Forms - webusability
- [showcase]
Login Forms - Elements of Design
- [showcase] Web Form Design Patterns: Sign-Up Forms - SamshingMagazine
- [showcase] Web Form Design: Modern Solutions and Creative Ideas 
- [showcase]
47+ Excellent Ajax CSS Forms
- [showcase] Interface Design Inspiration - 36 Clean Comment Form designs
- [showcase] CSSG Collections: Web Forms
- [resource] Uni-Form - making forms simple
- [resource] A CSS-based Form Template
- [JavaScript] JavaScript Input Masks
- [CSS] CSS Tableless Form  Another Forms
- Styling Form Controls With CSS - 456BereaStreet
- Browser Design Resources
- Building a better web forms: Context highlighting using jQuery
- Form Elements: 40+ CSS/JS Styling and Functionality Techniques
- customformelements.net
- Using Form Labels as Text Field values
- YUI: DHTML Form Controls
- Clean Accessible Form Foundation
- Prettier Accessible Forms
- How To Design The Perfect Form
- Form field Limiter
- Making of Beautiful Forms - Designing, Styling, Validating & Ajax
- Interface Design Inspiration | 36 Beautiful Login Page/Form Designs
- 25 Stylish Examples of Web Forms
- How To Use Pure CSS To Style Web Form Dynamically Plus 12 Awesome JavaScript Plugins
- 51 Form Element Resources and Tutorials Using CSS And JavaScript
- 25 Exceptional Contact Forms to get Inspired
- Interface Design Inspiration | 30 Impressive Ways to Design Sign-Up Page/Form
- UX trick: display form data as tabular data
- Tips for Coding and Designing Usable Web Forms
- Creating Slick Forms Using Ajax, jQuery & CSS: No More Ugly Forms
- [site] 123 Contact Form 
- 30 Beautiful Login Screens in web design 


2008/02/27 - [웹표준/쇼케이스] - Form CSS
2008/08/27 - [JavaScript] - input file 에서 이미지 파일 Size 구하기
2008/08/25 - [JavaScript] - input file & selection & clipboard
2008/06/07 - [웹표준] - Input button vs. Button

'웹표준 > 쇼케이스' 카테고리의 다른 글

UI: Sliders, Scrollers and Scrollbars  (0) 2008.05.08
Step Menu  (0) 2008.05.03
CSS Form Showcase  (0) 2008.04.30
UI: 튼튼한 CSS Button 만들기  (4) 2008.03.12
이미지 갤러리  (0) 2008.03.05
UI: border - 둥근모서리 (Rounded Corners)  (0) 2008.03.04

Equal Height Columns

웹표준 2008. 4. 16. 14:26
DIV를 이용하여 Grid System을 구성할 때 Table 구조가 부럽게 보일 때가 딱 하나 있다.
2개 이상의 Column 구조를 만들경우 그것들의 높이(height)가 각각 담고 있는 content의 차이로 인해 달라 진다.
background나 border가 있는 경우에 도드라져 보인다.

이를 해결하기 위한 방법으로는 ..
- background image를 이용하는 CSS Trick 과
- JavaScript를 이용해 강제로 height를 맞추는 방법 등이 있는데 ..
아래의 내용을 참고하자..


- Problems with the Equal Height Columns method
- http://www.projectseven.com/tutorials/css/pvii_columns/col3fluid.htm
- Equal Height boxes with CSS
- How do I make equal columns in CSS?
- Equal Height Columns using CSS
- Easy Equal Columns with CSS
- Equal Height Columns with jQuery
- The EqaulHeights jQuery Plugin
- Equal Height Columns with JavaScript
- Four Methods to Create Equal Height Columns
- Really simple CSS trick for equal height columns
- Flexible equal height columns
- Equal Height Column Layouts with Borders and Negative Margins in CSS
- 4 Methods For Creating Equal Height Columns In CSS 
- Making equal height columns with jQuery   
- Equal Column Height With CSS   
- Height Equals Width with Pure CSS    



'웹표준' 카테고리의 다른 글

테이블 스크롤  (0) 2008.05.26
CSS Bugs  (0) 2008.05.25
Equal Height Columns  (0) 2008.04.16
meta-element in (X)HTML  (0) 2008.03.12
(X)HTML 태그공부 여기서 하세요.  (0) 2008.03.04
HTML에서 더 이상 사용않는 Elements, Attributes  (0) 2008.03.04

meta-element in (X)HTML

웹표준 2008. 3. 12. 14:13

HTML문서에 대한 내용이 아니라 정보에 대한 메타데이터(meta data)를 HEAD 태그내에 표시할 수 있도록 하고 있다. [http://www.w3.org/TR/html401/struct/global.html#edef-META]
모든 브라우저에서 반영되는 내용이 아니므로 자주 사용되는 형식을 예제로 올린다.
* [wikipedia] Meta element
* Metatags.info


01. 종류
01) HTTP-Equivalent META Information
- 서버측 환경설정과 관련된 정보를 싣고 있다.
- encoding, cache 등 사용자 브라우저(User Agent)의 구동환경 정보를 담고 있다.

02) Arbitrary User-Specified META Information
- 사용자와 관련된 정보를 표시한다. (keywords for indexing, name of author etc.)


02. 속성 형식
- http-equiv : HTTP Response의 Header Name
- name : 메타정보의 이름
- content : http-equiv, name 속성과 관련된 내용 구성을 위한 정보 (#rquired 반드시 필요한 속성)
- scheme : 컨텐츠 형식 (예. ISBN)


03. 구성 예
01) 만든이 정보
<meta name="author" content="ian graham" />


02) HTML Editor 정보

<meta name="editor" content="html superpro" />
<meta name="generator" content="editplus" />


03) 서치엔진을 위한 정보 (SEO)

<meta name="keywords" lang="ko" content="지도,지역광고,지역정보" />
<meta name="keywords" lang="en" content="holiday, greece, sunshine" />
<meta name="robots" content="noindex,nofollow" />
[표준페이지 설정] <link rel="canonical" href="http://www.site.com" />

04) 문서 Encoding 정보
<meta http-equiv="content-type" content="text/html; charset=euc-kr" />


05) 문서 유효기간 설정

<meta http-equiv="expires" content="tue, 20 aug 1996 14:25:27 gmt" />


06) Reloading Time 설정 (여기선 10초), Redirect 설정

<meta http-equiv="refresh" content="3;url=http://www.daum.net" />
<meta http-equiv="refresh" content="10" />


07) Cache 관련 정보

<meta http-equiv="cache-control" content="no-cache" />
<meta http-equiv="pragma" content="no-cache" />


08) 기타

<meta http-equiv="imagetoolbar" content="no" />
<meta name="revised" content="Hege Refsnes, 6/10/99" />

<meta scheme="isbn" name="identifier" content="0-8230-2355-9" />
<meta http-equiv="X-UA-Compatible" content="IE=7" />


* [google] rel="canonical"

- W3C HTML4.01 Spec.
- [ms] IE META Element
-
www.utoronto.ca/webdocs/HTMLdocs/NewHTML/meta.html
- vancouver-webpages.com/META/
- www.w3schools.com/tags/tag_meta.asp
- www.html-reference.com/META.htm
- Language Code, ISO 639 
- Redirection Options
- Controlling text size in Sarfari for iOS without disabling user zoom
- [X-UA-Compatible] Defining Document Compatibility 
- Cache-Control HTTP Headers 
- Using Meta Tags in HTML: Some Basics and Best Practices    
- Roundup Of Useful Meta Tags   
- 5 Things You Can Do With HTML Meta Tag   




'웹표준' 카테고리의 다른 글

CSS Bugs  (0) 2008.05.25
Equal Height Columns  (0) 2008.04.16
meta-element in (X)HTML  (0) 2008.03.12
(X)HTML 태그공부 여기서 하세요.  (0) 2008.03.04
HTML에서 더 이상 사용않는 Elements, Attributes  (0) 2008.03.04
이메일 디자인의 9가지 정석  (4) 2008.03.03

UI: 튼튼한 CSS Button 만들기

웹표준/쇼케이스 2008. 3. 12. 14:04

CSS를 활용하여 쉽게 제작하는 버튼입니다.
버튼 이미지 위에 표현되는 제목에 따라 버튼 이미지를 제작하기 보다는 사용을 위한 종류의 이미지 (버튼 밑그림) 에 Text 제목을 사용하여 만들어지는 버튼은 활용범위가 넓을 뿐 아니라 버튼 제작시간을 단축시켜 줍니다.  많은 예제중 활용도가 높아 보이는 방법을 소개합니다.
그러나 IE6에선 다소 문제가 있습니다. ㅠㅠ

01. CSS Sliding Door using only 1 image
URL : http://kailoon.com/css-sliding-door-using-only-1-image/
아쉬운점 : 이미지 모서리를 투명처리 하면 겹쳐 나타나게 되어 보기가 쩜 그렇다..

사용자 삽입 이미지


02. CSS Oval Buttons
URL :
www.dynamicdrive.com/style/csslibrary/item/css_oval_buttons/
사용자 삽입 이미지


03. Rediscovering the Button Element

URL :
particletree.com/features/rediscovering-the-button-element/

사용자 삽입 이미지


04. Bold CSS Buttons

URL#1 :
www.dynamicdrive.com/style/csslibrary/item/bold_css_buttons/
URL#2 : www.dynamicdrive.com/style/csslibrary/item/vista_aero_buttons_menu/
사용자 삽입 이미지


05. Recreating the button

URL : stopdesign.com/archive/2009/02/04/recreating-the-button.html 
 
[##_http://kmoonki.tistory.com/script/powerEditor/pages/1C%7C498bc00fea4cfEJ.png%7Cwidth=%22460%22%20height=%22112%22%20alt=%22%22%20filename=%229-cell.png%22%20filemime=%22%22%7C_##]

*Button Templates
- Simply-Button v2
- Top 10 CSS Buttons Tutorials List
-
Free High-Gloss Graphite Buttons 
-
77 Vector Buttons hot off the press
- CSS Square buttons
- 45 Photoshop Tutorials for Better Navigation [button]
- Styling the button element with sliding doors
- Make fancy buttons using CSS sliding doors technique
- Liquid & Color Adjustable CSS Buttons
- Skinnable Web 2.0 Button
- ButtonReplacement.JS
- Stylish Submit Buttons
- www.webreference.com/programming/css_stylish/
- [beginner] Create a Button with Hover and Active State using CSS Sprites
- [CSS3] Super Awesome Buttons with CSS3 and RGBA
- [CSS3] Creating a Realistic Looking Button with CSS3
- [CSS3] An Introduction to CSS3 - Creating a Button
- [CSS3] Pretty CSS3 buttons
- [CSS3] 12 Excellent CSS3 Button and Menu Techniques
- [CSS3] CSS3 Gradient Buttons
- [CSS3] CSS3 Button Tutorials and Techinques Revisited
- [CSS3] CSS3 Buttons Without Any Images
- [CSS3] Cross-browser CSS gradient buttons
- [CSS3] CSS3 Facebook Buttons
- [CSS3] CSS3 GitHub Buttons
- [CSS3] CSS3 Button UI
- CSS3 Buttons - 10+ Awesome Ready-To-Use Solutions
- Creating CSS3 Buttons: Techniques, Tutorials, Tools
- Create  Multi Color and Size CSS3 Buttons
- Create a Slick CSS3 Button with box-shadow and rgba
- [framework] CSS3 Buttonize Framework
- CSS3 Brushed Metal Button
- Just some other awesome CSS3 Buttons
- How To Create A Clean And Stylish CSS3 Menu
- Google+ Styled Buttons
- All About Buttons: Inspiration, PSDs for Download, CSS Generators and Frameworks 
- CSS And CSS3 Buttons, 110 Best Sets! 
- 20 More CSS3 Tutorials and Techniques for Creating Buttons 
- CSS3 Pictogram Button 
- UI Design: Glossy Buttons With CSS3 Gradient   
- 24 Free CSS and PSD Buttons for Websites Layouts   




 

'웹표준 > 쇼케이스' 카테고리의 다른 글

Step Menu  (0) 2008.05.03
CSS Form Showcase  (0) 2008.04.30
UI: 튼튼한 CSS Button 만들기  (4) 2008.03.12
이미지 갤러리  (0) 2008.03.05
UI: border - 둥근모서리 (Rounded Corners)  (0) 2008.03.04
Chart & Graph  (2) 2008.03.04
  • 세슈 2008.03.15 21:32 ADDR 수정/삭제 답글

    와.. 버튼이 깔끔하면서도 눈길을 끄네요! 좋은 정보 고맙습니다!

    • Favicon of https://kmoonki.tistory.com BlogIcon 자리끼 2008.03.17 14:01 신고 수정/삭제

      내용에 맞도록 응용하면 멋진 Button을 만들 수 있습니다.^^

  • Favicon of http://vaslor.net BlogIcon VL 2011.01.20 20:27 ADDR 수정/삭제 답글

    정리가 잘 되어 있네요.. 감사합니다.

이미지 갤러리

웹표준/쇼케이스 2008. 3. 5. 19:51
CSS + JavaScript 를 이용하는 Image View 형식 모둠 (flash 일부 포함)
21+ Beautiful JavaScript and Ajax based solutions to our gallery requirements
15+ Free, powerful and easy to integrate Flash Image Gallery
30+ Useful Ajax Lightbox and Modal Dialog Solutions
42 jQuery Image Gallery Plugins 

01. jQuery Image Gallery 
URL :
www.monc.se/galleria/
사용자 삽입 이미지
사용자 삽입 이미지


02. Flickrshow
URL :
www.flickrshow.com
사용자 삽입 이미지


03. Polaroid Gallery (Flash)
URL :
www.no3dfx.com/polaroid/
사용자 삽입 이미지


04. SimpleViewer (flash)
URL :
www.airtightinteractive.com/simpleviewer/
AutoViewer, Flickr PostcardViewer, TiltViewer 등 다른 application 참조
사용자 삽입 이미지


05. Like Image-Map and Tooltip
URL :
www.taggify.net 
URL :
boxover.swazz.org  (tooltip in div-elements)
사용자 삽입 이미지


0
6. Dynamic Image Gallery and Slideshow
URL :
www.leigeber.com/2008/05/ajax-image-gallery-slideshow/
Demo : sandbox.leigeber.com/slideshow/
사용자 삽입 이미지


07. YCodaSlider 2.0
URL :
maxb.net/blog/2008/05/11/ycodaslider-20/
참고 : www.panic.com/coda/
사용자 삽입 이미지
사용자 삽입 이미지


08. DhoniShow
URL :
lifedraft.de/projekte/dhonishow/
사용자 삽입 이미지


09. BarackSlideshow Demo
URL :
devthought.com/barackslideshow-an-elegant-lightweight-slideshow-script/
사용자 삽입 이미지

10. SlideShow with Mootools
URL :
www.electricprism.com/aeron/slideshow/
사용자 삽입 이미지

11. jQuery Cycle Plugin
URL : http://malsup.com/jquery/cycle/
사용자 삽입 이미지

* Feature Gallery
URL: http://photojojo.com/store/awesomeness/felt-camera-case/
 

- 30 Scripts For Galleries, Slideshows and Lightboxes
- 57+ Free Image Gallery, Slideshow And Lightbox Solutions
- Image SlideShow, DynamicDrive
- (E)2 Photo Gallery Made with Mootools
- FIG (Flash Image Gallery)
- 12 JavaScript Image Galleries
- 100+1 Free Photo/Image Galleries (Ajax, Flash, PHP)
- 50 Excellent Image Galleries You Can Use Today
- GalleryView - A jQuery Content Gallery Plugin
Tip: High quality CSS thumbnails in IE7
- [Design] Different types of Web Galleries
- Creative Image-Galleries by jQuery
- 30 JavaScript Image and Photo Galleries - Mootools, Prototype, jQuery and Tutorials
- 11 Photo Galleries Made by the Awesome CSS3
- [mootools] 10 MooTools Image and Content Sliders
- Best jQuery Slideshow (Gallery) Plugins
- 20 jQuery Image and Multimedia Gallery Plugins
- 30+ Best jQuery Plugin Solutions for Your Gallery  
- SmugMug - Stunning Photo Websites   





'웹표준 > 쇼케이스' 카테고리의 다른 글

CSS Form Showcase  (0) 2008.04.30
UI: 튼튼한 CSS Button 만들기  (4) 2008.03.12
이미지 갤러리  (0) 2008.03.05
UI: border - 둥근모서리 (Rounded Corners)  (0) 2008.03.04
Chart & Graph  (2) 2008.03.04
UI: 네비게이션, 메뉴 CSS  (0) 2008.02.27