Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
a82b885
01 핀터레스트 스타일 레이아웃 만들기 (masonry)
neverlish Jun 22, 2017
ac09f12
02 자바스크립트 없이 tree 만들기
neverlish Jun 22, 2017
30e22f9
03 링크를 버튼으로 만들기
neverlish Jun 22, 2017
fe1b56f
04 Holy Grail Layout
neverlish Jun 22, 2017
25e82d5
05 섬네일(Thumbnail)
neverlish Jun 22, 2017
eea5b2e
06 사진 중심의 웹사이트 만들기 - 1 수업소개
neverlish Jun 22, 2017
9b7a5e3
06 사진 중심의 웹사이트 만들기 - 2 배경이미지
neverlish Jun 22, 2017
0b3fde6
06 사진 중심의 웹사이트 만들기 - 3 header avatar
neverlish Jun 22, 2017
3b47457
06 사진 중심의 웹사이트 만들기 - 4 header h1 웹폰트
neverlish Jun 22, 2017
7b2d33c
06 사진 중심의 웹사이트 만들기 - 5 header icons fontello
neverlish Jun 23, 2017
973c5bb
06 사진 중심의 웹사이트 만들기 - 6 header 정리
neverlish Jun 23, 2017
7699dfb
06 사진 중심의 웹사이트 만들기 - 7 main thumbnail, flex
neverlish Jun 23, 2017
53f2ae5
06 사진 중심의 웹사이트 만들기 - 8 footer
neverlish Jun 23, 2017
21d7015
06 사진 중심의 웹사이트 만들기 - 9 마무리 작업과 반응형 웹
neverlish Jun 23, 2017
cbac203
07 Parallax(시차를 이용한 효과)
neverlish Jan 28, 2018
e4e6160
08 위지윅 에디터 (CKeditor)
neverlish Jan 28, 2018
14c805b
09 댓글 서비스(disqus)
neverlish Jan 28, 2018
cf455fd
10 랜덤 이미지 생성기
neverlish Jan 28, 2018
fa2b782
11 mojs - 모션그래픽 라이브러리
neverlish Feb 17, 2018
7067b74
12 리로딩 없이 URL 바꾸기 (음악앱)
neverlish Feb 17, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
75 changes: 75 additions & 0 deletions html/ot-web-recipe/01-masonry.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
<!doctype html>
<html>
<head>
<style>
#columns {
column-width: 350px;
column-gap: 15px;
}
#columns figure {
display: inline-block;
border: 1px solid rgba(0, 0, 0, 0.2);
margin: 0;
margin-bottom: 15px;
padding: 10px;
box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}
#columns figure img {
width: 100%;
}
#columns figure figcaption {
border-top: 1px solid rgba(0, 0, 0, 0.2);
padding: 10px;
margin-top: 11px;
}
</style>
</head>
<body>
<div id="columns">
<figure>
<img src="http://s3-us-west-2.amazonaws.com/s.cdpn.io/4273/cinderella.jpg">
<figcaption>Cinderella wearing European fashion of the mid-1860’s</figcaption>
</figure>

<figure>
<img src="http://s3-us-west-2.amazonaws.com/s.cdpn.io/4273/rapunzel.jpg">
<figcaption>Rapunzel, clothed in 1820’s period fashion</figcaption>
</figure>

<figure>
<img src="http://s3-us-west-2.amazonaws.com/s.cdpn.io/4273/belle.jpg">
<figcaption>Belle, based on 1770’s French court fashion</figcaption>
</figure>

<figure>
<img src="http://s3-us-west-2.amazonaws.com/s.cdpn.io/4273/mulan_2.jpg">
<figcaption>Mulan, based on the Ming Dynasty period</figcaption>
</figure>

<figure>
<img src="http://s3-us-west-2.amazonaws.com/s.cdpn.io/4273/sleeping-beauty.jpg">
<figcaption>Sleeping Beauty, based on European fashions in 1485</figcaption>
</figure>

<figure>
<img src="http://s3-us-west-2.amazonaws.com/s.cdpn.io/4273/pocahontas_2.jpg">
<figcaption>Pocahontas based on 17th century Powhatan costume</figcaption>
</figure>

<figure>
<img src="http://s3-us-west-2.amazonaws.com/s.cdpn.io/4273/snow-white.jpg">
<figcaption>Snow White, based on 16th century German fashion</figcaption>
</figure>

<figure>
<img src="http://s3-us-west-2.amazonaws.com/s.cdpn.io/4273/ariel.jpg">
<figcaption>Ariel wearing an evening gown of the 1890’s</figcaption>
</figure>

<figure>
<img src="http://s3-us-west-2.amazonaws.com/s.cdpn.io/4273/tiana.jpg">
<figcaption>Tiana wearing the <i>robe de style</i> of the 1920’s</figcaption>
</figure>
</div>
</body>
</html>
21 changes: 21 additions & 0 deletions html/ot-web-recipe/02-tree/fontello/LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
Font license info


## Entypo

Copyright (C) 2012 by Daniel Bruce

Author: Daniel Bruce
License: SIL (http://scripts.sil.org/OFL)
Homepage: http://www.entypo.com


## Font Awesome

Copyright (C) 2016 by Dave Gandy

Author: Dave Gandy
License: SIL ()
Homepage: http://fortawesome.github.com/Font-Awesome/


75 changes: 75 additions & 0 deletions html/ot-web-recipe/02-tree/fontello/README.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
This webfont is generated by http://fontello.com open source project.


================================================================================
Please, note, that you should obey original font licenses, used to make this
webfont pack. Details available in LICENSE.txt file.

- Usually, it's enough to publish content of LICENSE.txt file somewhere on your
site in "About" section.

- If your project is open-source, usually, it will be ok to make LICENSE.txt
file publicly available in your repository.

- Fonts, used in Fontello, don't require a clickable link on your site.
But any kind of additional authors crediting is welcome.
================================================================================


Comments on archive content
---------------------------

- /font/* - fonts in different formats

- /css/* - different kinds of css, for all situations. Should be ok with
twitter bootstrap. Also, you can skip <i> style and assign icon classes
directly to text elements, if you don't mind about IE7.

- demo.html - demo file, to show your webfont content

- LICENSE.txt - license info about source fonts, used to build your one.

- config.json - keeps your settings. You can import it back into fontello
anytime, to continue your work


Why so many CSS files ?
-----------------------

Because we like to fit all your needs :)

- basic file, <your_font_name>.css - is usually enough, it contains @font-face
and character code definitions

- *-ie7.css - if you need IE7 support, but still don't wish to put char codes
directly into html

- *-codes.css and *-ie7-codes.css - if you like to use your own @font-face
rules, but still wish to benefit from css generation. That can be very
convenient for automated asset build systems. When you need to update font -
no need to manually edit files, just override old version with archive
content. See fontello source code for examples.

- *-embedded.css - basic css file, but with embedded WOFF font, to avoid
CORS issues in Firefox and IE9+, when fonts are hosted on the separate domain.
We strongly recommend to resolve this issue by `Access-Control-Allow-Origin`
server headers. But if you ok with dirty hack - this file is for you. Note,
that data url moved to separate @font-face to avoid problems with <IE9, when
string is too long.

- animate.css - use it to get ideas about spinner rotation animation.


Attention for server setup
--------------------------

You MUST setup server to reply with proper `mime-types` for font files -
otherwise some browsers will fail to show fonts.

Usually, `apache` already has necessary settings, but `nginx` and other
webservers should be tuned. Here is list of mime types for our file extensions:

- `application/vnd.ms-fontobject` - eot
- `application/x-font-woff` - woff
- `application/x-font-ttf` - ttf
- `image/svg+xml` - svg
28 changes: 28 additions & 0 deletions html/ot-web-recipe/02-tree/fontello/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"name": "",
"css_prefix_text": "icon-",
"css_use_suffix": false,
"hinting": true,
"units_per_em": 1000,
"ascent": 850,
"glyphs": [
{
"uid": "c82f1ec71a2c9e5af8b00fe5fe27f57e",
"css": "hand-grab-o",
"code": 62037,
"src": "fontawesome"
},
{
"uid": "abf08be829659c02d1f9a711daefa8ce",
"css": "hand-paper-o",
"code": 62038,
"src": "fontawesome"
},
{
"uid": "815503841e980c848f55e0271deacead",
"css": "link",
"code": 59392,
"src": "entypo"
}
]
}
85 changes: 85 additions & 0 deletions html/ot-web-recipe/02-tree/fontello/css/animation.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
/*
Animation example, for spinners
*/
.animate-spin {
-moz-animation: spin 2s infinite linear;
-o-animation: spin 2s infinite linear;
-webkit-animation: spin 2s infinite linear;
animation: spin 2s infinite linear;
display: inline-block;
}
@-moz-keyframes spin {
0% {
-moz-transform: rotate(0deg);
-o-transform: rotate(0deg);
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}

100% {
-moz-transform: rotate(359deg);
-o-transform: rotate(359deg);
-webkit-transform: rotate(359deg);
transform: rotate(359deg);
}
}
@-webkit-keyframes spin {
0% {
-moz-transform: rotate(0deg);
-o-transform: rotate(0deg);
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}

100% {
-moz-transform: rotate(359deg);
-o-transform: rotate(359deg);
-webkit-transform: rotate(359deg);
transform: rotate(359deg);
}
}
@-o-keyframes spin {
0% {
-moz-transform: rotate(0deg);
-o-transform: rotate(0deg);
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}

100% {
-moz-transform: rotate(359deg);
-o-transform: rotate(359deg);
-webkit-transform: rotate(359deg);
transform: rotate(359deg);
}
}
@-ms-keyframes spin {
0% {
-moz-transform: rotate(0deg);
-o-transform: rotate(0deg);
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}

100% {
-moz-transform: rotate(359deg);
-o-transform: rotate(359deg);
-webkit-transform: rotate(359deg);
transform: rotate(359deg);
}
}
@keyframes spin {
0% {
-moz-transform: rotate(0deg);
-o-transform: rotate(0deg);
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}

100% {
-moz-transform: rotate(359deg);
-o-transform: rotate(359deg);
-webkit-transform: rotate(359deg);
transform: rotate(359deg);
}
}
4 changes: 4 additions & 0 deletions html/ot-web-recipe/02-tree/fontello/css/fontello-codes.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@

.icon-link:before { content: '\e800'; } /* '' */
.icon-hand-grab-o:before { content: '\f255'; } /* '' */
.icon-hand-paper-o:before { content: '\f256'; } /* '' */
Loading