250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- react
- keyframes
- button
- 개발자
- CSS
- SWIFT
- MAC
- Animation
- ipad
- 애니메이션
- hover
- php
- html5
- xcode
- 프론트엔드
- jQuery
- effect
- iOS 개발자
- 비전공자
- 풀스택
- image
- javascript
- HTML
- IOS
- 비전공 개발자
- css3
- iPhone
- front-end
- 자바스크립트
- 백엔드
Archives
- Today
- Total
목록트리 (2)
비전공자 개발일기

* { margin: 0; padding: 0; box-sizing: border-box; } body { display: flex; justify-content: center; align-items: center; min-height: 100vh; background-color: #E8FFE8; } .tree { position: relative; top: -100px; width: 300px; height: 300px; transform-style: preserve-3d; transform: rotateX(-20deg) rotateY(30deg); animation: animate 6s linear infinite; } .tree::before { content: '⭐'; position: absol..
HTML _CSS
2022. 9. 13. 00:58
Javascript For loop - tree
// 정사각형 for(let i = 0 ; i < 5 ; i++){ for(let j = 0 ; j < 5 ; j++) { document.write("*") } document.write(" ") } // 직각 삼각형 트리 for(let i = 0 ; i < 5 ; i++){ for(let j = 0 ; j i; j--) { document.write(' '); } for(let j=0; j i; j--) { document.write('*'); } document.write(' '); }
Javascript
2021. 9. 4. 00:19