일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 비전공자
- react
- 비전공 개발자
- 애니메이션
- CSS
- effect
- 풀스택
- keyframes
- front-end
- html5
- MAC
- Animation
- iPhone
- 자바스크립트
- hover
- image
- ipad
- SWIFT
- 백엔드
- jQuery
- button
- 개발자
- xcode
- iOS 개발자
- IOS
- javascript
- css3
- 프론트엔드
- HTML
- php
- Today
- Total
목록bubble (4)
비전공자 개발일기

Click me! *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; } body { min-height: 100vh; display: grid; place-items: center; background: #151515; } .bubbly-button { display: inline-block; font-size: 1em; padding: 1em 2em; margin-top: 100px; margin-bottom: 60px; -webkit-appearance: none; appearance: none; background-color: #ff0081; color: #fff; border-radius: 4px; border: non..

Happy Birth Day * { margin: 0; padding: 0; box-sizing: border-box; } body { height: 100vh; overflow: hidden; background-color: #2598EB; } h2 { position: absolute; top: 50%; transform: translateY(-50%); text-align: center; width: 100%; font-size: 12vw; line-height: 1em; font-weight: 800; color: #667ABA; text-transform: uppercase; z-index: 3; } i { position: absolute; display: block; background-co..

* { margin: 0; padding: 0; box-sizing: border-box; } body { display: flex; justify-content: center; align-items: center; min-height: 100vh; background-color: #000; } .bubble { position: absolute; width: 200px; height: 200px; border-radius: 50%; box-shadow: inset 0 0 25px rgba(255, 255, 255, .25); animation: animate 8s ease-in-out infinite; } .bubble:nth-child(2) { position: relative; zoom: .45; ..
Bubble sort (버블 정렬) 두 인접한 원소를 검사하여 정렬 let array = [11, 2, 20, 3, 13 ,0, -20, 100, 1]; // [11, 2, 20, 3, 13 ,0, -20, 100, 1]를 버블정렬(내림차순) console.log(array) console.log("======================") for (let i = 0; i < array.length - 1; i++) { let temp; for (let j = 0; j < array.length - 1 - i; j++){ if (array[j] < array[j + 1]) { temp = array[j]; array[j] = array[j + 1]; array[j + 1] = temp; } consol..