Computer/WebDesign, Animation
์ ๋ฌด์ ๋์๋๋ ์ถ์ฒ์ฌ์ดํธ - ์น ์ ๋๋ฉ์ดํฐ
์ ๋๋ฉ์ด์
์ ์น ๊ฐ๋ฐ์์ ์ค์ํ ์์๋ก, ์ฌ์ฉ์ ๊ฒฝํ์ ํฅ์์ํค๊ณ ์๊ฐ์ ๋งค๋ ฅ์ ๋ํด์ค๋๋ค. ์ฌ๊ธฐ, ์ฌ๋ฌ๋ถ์ด ์์๋๋ฉด ์ข์ ๋ค ๊ฐ์ง ์ฃผ์ ์ ๋๋ฉ์ด์
๋ผ์ด๋ธ๋ฌ๋ฆฌ์ ํ๋ซํผ์ ์๊ฐํฉ๋๋ค.1. GSAPhttps://gsap.com/ Homepage | GSAPGSAP is an industry standard JavaScript animation library from GreenSock that lets you craft high-performance animations that work in every major browser.gsap.comGSAP (GreenSock Animation Platform)์ ์น์ฉ ๊ณ ์ฑ๋ฅ ์ ๋๋ฉ์ด์
์ ๋ง๋ค ์ ์๊ฒ ํด์ฃผ๋ ์ ๋ฌธ JavaScript ์ ๋๋ฉ์ด์
๋ผ์ด๋ธ๋ฌ๋ฆฌ์
๋๋ค. UI..
Computer/WEB, PHP-JAVA-Script
Node.js์์ ์น์๋ฒ ๋ฐ๋ก ๊ฐ๋ฅํ๋ฐ, Nginx๋ฅผ ์ฌ์ฉํ๋ ์ด์
Node.js๋ ์์ฒด์ ์ผ๋ก ์น ์๋ฒ๋ฅผ ์คํํ ์ ์๋ ๊ธฐ๋ฅ์ ์ ๊ณตํ๋ฉฐ, ์ด๋ฅผ ํตํด ์ง์ ์น ์ ํ๋ฆฌ์ผ์ด์
์ ์ด์ํ ์ ์๋ค.๊ฐ๋จํ ์๋ก, http ๋ชจ๋์ ์ฌ์ฉํ์ฌ ๊ธฐ๋ณธ์ ์ธ ์น ์๋ฒ๋ฅผ ์ค์ ํ ์ ์๋ค.const http = require('http');const hostname = '127.0.0.1';const port = 3000;const server = http.createServer((req, res) => { res.statusCode = 200; res.setHeader('Content-Type', 'text/plain'); res.end('Hello World\n');});server.listen(port, hostname, () => { console.log(`Server runnin..