You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

194 lines
6.6 KiB

11 years ago
  1. # Semantic
  2. Semantic is a set of specifications for sharing UI elements between developers. Semantic is also a UI library to make front end development simpler and easier to learn.
  3. ## Development Status
  4. Semantic is pre-release. Build tools are not yet available, and APIs may be updated regularly prior to 1.0, so be warned!
  5. Please [share any issues](https://github.com/jlukic/Semantic-UI/issues?state=open) you may have, we need your help to get all the kinks out.
  6. If you need to create a test case, you can [fork this jsfiddle](http://jsfiddle.net/jlukic/Vbr9d/1/) to get you started.
  7. ## The Library
  8. ### Getting Started
  9. The Semantic library describes many UI elements. In most instances it might be best to build a custom build with only the elements you need.
  10. *Build tools are not yet available but stay tuned!*
  11. ~~You can use our build tool to select only the components you want~~
  12. To download the entire library
  13. git clone git@github.com:quirkyinc/semantic.git
  14. If you prefer to download the whole kit as a zip, it is so conveniently packaged.
  15. http://semantic-ui.com/build/semantic.zip
  16. ## The Specification
  17. The aim of the specification is to develop conventions around structuring and naming code for interface elements.
  18. By defining a vocabulary the development community can exchange javascript and css definitions of UI in a similar language, making new code easier to grok, and reducing the complexity of starting a new project, or changing a sites design.
  19. ## Types of UI
  20. UI components are split into four categories, ranging from smallest to largest in scope:
  21. * UI Elements
  22. * UI Collections
  23. * UI Modules
  24. * UI Views
  25. ### UI Elements
  26. UI Elements are interface elements which do not contain other elements inside themselves. This can be thought of as similar in definition as an "element" in chemistry.
  27. UI elements can have plural definitions when they are known to exist together frequently.
  28. In this case each button will be large because we understand it is a part of the large button group
  29. ``` html
  30. <div class="large ui buttons">
  31. <div class="ui button">Cancel</div>
  32. <div class="ui button">Continue</div>
  33. </div>
  34. ```
  35. Examples of UI elements:
  36. * Buttons
  37. * Labels
  38. * Headers
  39. * Progress bars
  40. ### UI Collections
  41. UI Collections are groups of heteregeneous UI elements which are usually found together. Carrying the chemistry metaphor, these can be thought of as molecules.
  42. UI collections have a definition of elements that exist, or could exist inside of them. They do not usually require all elements to be found, but they describe a list of the "usual suspects". Unlike elements, collections are not typically useful to define in plural.
  43. Examples of UI collections:
  44. * Forms
  45. * Tables
  46. * Grids (Layout)
  47. * Menus
  48. ### UI Modules
  49. UI modules are elements where it's behavior is a fundamental part of its definition. UI Modules are dependent on the javascript which carry their definition. They also may be more complex, and have a variety of different functions. Further abusing the scientific analogy: These can be thought of as "organs".
  50. Examples of UI modules:
  51. * Popups
  52. * Modals
  53. * Chatrooms
  54. ### UI Views
  55. UI Views are common ways to structure types of content so that it can be understood more easily. A view's definition in semantic only describes the content which typically occupies the view.
  56. Examples of UI views:
  57. * Comment Feed
  58. * Activity Feed
  59. * Product List
  60. ### How it is defined
  61. #### Scope of a definition
  62. **All UI**: The specification defines class name and html structures which can be used to represent an element
  63. **Elements**: An element definition gives states which an elements can occupy, common types of that element, and if necessary, defines how the element functions in groups.
  64. **Collections**: Collection definitions list elements that it can include, and variations which can apply to both the collection, or individual elements found in the collection.
  65. **Modules**: Module definitions include a list of behaviors that are commonly associated with an element
  66. **Views**: View specifications defines the types of content the view usually display, and the heirarchy typical to presenting this content to the user.
  67. #### Based on class
  68. Semantic is based on class names, instead of tags. This means, except for links, tables and form elements, you can use semantic with tags like ``<div> <article> <nav>`` without any difference.
  69. #### Context sensitive
  70. In Semantic, variations maintain context based on the element they modify, but keep the same vocabulary between elements. Just like how in English, the adjective 'big' may describe a different scale for a big planet versus a big insect.
  71. For example, a form you can have a variation called "inverted". This changes the appearance of form elements to work on dark backgrounds.
  72. ```html
  73. <div class="ui inverted form">
  74. <div class="field">
  75. <label>Name</label>
  76. <input type="text">
  77. </div>
  78. </div>
  79. ```
  80. The same variation can also be useful in the context of a menu.
  81. ```html
  82. <div class="ui inverted menu">
  83. <div class="item">Section 1</div>
  84. <div class="ui simple dropdown item">
  85. Dropdown
  86. <div class="menu">
  87. <div class="item">Dropdown item 1</div>
  88. <div class="item">Dropdown item 2</div>
  89. </div>
  90. </div>
  91. </div>
  92. ```
  93. #### Example
  94. Here is part of Semantic's definition of a button
  95. **Standard**: A button is a shape that can be pressed in to complete an action.
  96. ```html
  97. <div class="ui button"></div>
  98. ```
  99. **State**: A button can sometimes be active, designating it is selected by the user.
  100. ```html
  101. <div class="ui active button">
  102. ```
  103. **Variations**: A button may sometimes look different than its prototype.
  104. ```html
  105. <div class="ui large blue icon button">
  106. <i class="ui icon heart"></i>
  107. </div>
  108. ```
  109. **Plurality**: A button can sometimes exist in a group of buttons
  110. ``` html
  111. <div class="ui large blue buttons">
  112. <div class="ui button">
  113. I am blue
  114. </div>
  115. <div class="ui button">
  116. I am blue too
  117. </div>
  118. </div>
  119. ```
  120. ## Usage
  121. ### Developers
  122. Prereqs Node, Grunt(``npm install -g grunt-cli``) and DocPad (``npm install -g docpad``)
  123. Inside ``node/`` use the command ``docpad run`` to start your server
  124. You can then access the docs locally at ``localhost:9778``
  125. To have DocPad watch for changes while working on a component simply run the command
  126. ``grunt``
  127. To build the release packages for Semantic
  128. ``grunt build``
  129. #### I want to contribute to the spec
  130. Semantic is very new standard, and we need a community to become truly useful. We're working currently to determine the best ways to engage the community for contribution. If you'd like to participate feel free to reach out by e-mail [jack@myfav.es](mailto:jack@myfav.es)