https://github.com/ssi02014/responsivewebsite
๐ฅ W3C ์น ํ์ค ์ค์ ๋ฐ์ํ ์น ์ฌ์ดํธ
https://github.com/ssi02014/responsivewebsite
Last synced: 8 months ago
JSON representation
๐ฅ W3C ์น ํ์ค ์ค์ ๋ฐ์ํ ์น ์ฌ์ดํธ
- Host: GitHub
- URL: https://github.com/ssi02014/responsivewebsite
- Owner: ssi02014
- Created: 2020-09-09T15:59:51.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-03-06T18:02:18.000Z (over 4 years ago)
- Last Synced: 2024-12-30T06:44:51.885Z (9 months ago)
- Language: CSS
- Homepage:
- Size: 14.1 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ๐ป ResponsiveWebSite
### HTML, CSS, JS(Jquery)๋ฅผ ์ด์ฉํด์ ๋ง๋ W3C ์น ํ์ค ์ค์ ๋ฐ์ํ ์ฌ์ดํธ
### โญ Github Page : https://ssi02014.github.io/ResponsiveWebSite/
## ๐ฅ ์น ํ์ด์ง ํ๋ฉด


## ๐ฅ W3C Check


## ๐ Main Development Stack
### ๐จ๐ปโ๐ป FrontEnd
1. HTML
2. CSS
3. JavaScript(Jquery)
## ๐ HTML ๊ด๋ จ ํ์ต ๋ด์ฉ ๋๋ ์ด์
### ๐ 1. favicon ์ ์ฉ
```html
```
### ๐ 2. ์๋งจํฑ ํ๊ทธ
```html
1. : ํค๋
2. : ๋ค๋น๊ฒ์ด์
3. : ์ฌ์ด๋์ ์์นํ๋ ๊ณต๊ฐ
4. : ๋ณธ๋ฌธ์ ์ฌ๋ฌ ๋ด์ฉ(article)์ ํฌํจํ๋ ๊ณต๊ฐ
5. : ๋ณธ๋ฌธ์ ์ฃผ ๋ด์ฉ์ด ๋ค์ด๊ฐ๋ ๊ณต๊ฐ
6. : ํธํฐ
```
### ๐ 3. ๋ฐ์ํ ์ด๋ฏธ์ง
```html
๋ฐ์ํ ์ด๋ฏธ์ง: ํด์๋, ์คํฌ๋ฆฐ ํฌ๊ธฐ ๋ฑ์ด ๋ค๋ฅธ ์๋ง์ ๊ธฐ๊ธฐ๋ค์์ ์ ์์ ์ผ๋ก ํ์๋๋ ์ด๋ฏธ์ง
![]()
```
### ๐ 4. Youtube ์์ ๊ฐ์ ธ์ค๊ธฐ
```html
```
## ๐ CSS ๊ด๋ จ ํ์ต ๋ด์ฉ ๋๋ ์ด์
### ๐ 1. @media(๋ฏธ๋์ด ์ฟผ๋ฆฌ)
```css
/* ํ๋ฉด ๋๋น 0 ~ 1220px : ๋ฐ์คํฌํ */
@media (max-width:1220px) {
...
}
/* ํ๋ฉด ๋๋น 0 ~ 960px : ํ๋ธ๋ 1 */
@media (max-width:960px) {
...
}/* ํ๋ฉด ๋๋น 0 ~ 768px : ํ๋ธ๋ 2 */
@media (max-width:768px){
...
}/* ํ๋ฉด ๋๋น 0 ~ 600px : ๋ชจ๋ฐ์ผ1 */
@media (max-width:600px){
...
}/* ํ๋ฉด ๋๋น 0 ~ 480px : ๋ชจ๋ฐ์ผ2 */
@media (max-width:510px){
...
}
/* ํ๋ฉด ๋๋น 0 ~ 360px : ๋ชจ๋ฐ์ผ3 */
@media (max-width:320px){
...
}
```
### ๐ 2. ๋ผ์ดํธ ๋ฐ์ค ์ด๋ฏธ์ง ํจ๊ณผ
```css
.square a:nth-child(1):hover img {filter: blur(2px);}
.square a:nth-child(2):hover img {filter: brightness(50%);}
.square a:nth-child(3):hover img {filter: contrast(10%);}
.square a:nth-child(4):hover img {filter: grayscale(100%);}
.square a:nth-child(5):hover img {filter: hue-rotate(120deg);}
.square a:nth-child(6):hover img {filter: invert(100%);}
.square a:nth-child(7):hover img {filter: opacity(10%);}
.square a:nth-child(8):hover img {filter: saturate(10%);}
.square a:nth-child(9):hover img {filter: sepia(120%);}
.square a:nth-child(10):hover img {filter: sepia(120%) hue-rotate(120deg);}
```
## ๐ JavaScript ๋ผ์ด๋ธ๋ฌ๋ฆฌ(Jquery)
### ๐ 1. Slick์ ์ด์ฉํ Slide ๊ตฌํํ๊ธฐ
```html
``````javascript
// jquery code
$(".slider").slick({
dots: true,
autoplay: true,
autoplaySpeed: 3000,
arrows: true,
responsive: [
{
breakpoint: 768,
settings: {
autoplay : false
}
}
]
});
```
### ๐ 2. lightgallery๋ฅผ ์ด์ฉํ gallery ๊ตฌํํ๊ธฐ
```html
![]()
blur
![]()
brightness
![]()
contrast
![]()
grayscale
![]()
hur-rotate
![]()
invert
![]()
opacity
![]()
saturate
![]()
sepia
![]()
Mix
``````javascript
//jquery code
$(".lightbox").lightGallery({
...
});
```