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

body { background-color: #000; margin: 0; overflow: hidden; background-repeat: no-repeat; } var canvas = document.getElementById("canvas"); canvas.width = window.innerWidth; canvas.height = window.innerHeight; // Initialize the GL context var gl = canvas.getContext("webgl"); if (!gl) { console.error("Unable to initialize WebGL."); } //Time var time = 0.0; //************** Shader sources ********..

body { background-color: black; height: 100vh; display: flex; justify-content: center; align-items: center; } .love { position: relative; width: 50px; height: 50px; } p::after { position: absolute; width: 50px; height: 50px; content: "I LOVE"; font-size: 5px; font-weight: 700; top: 10px; left: 1px; transition: all .5s ease-in-out; } .love span { position: absolute; width: 30px; height: 30px; bac..