Vue

[Vue] #4 - ๋™์ ์ธ ๋ชจ๋‹ฌ์ฐฝ ๋งŒ๋“ค๊ธฐ

ruby_s 2021. 8. 6. 11:13
728x90
๋ฐ˜์‘ํ˜•
SMALL

1. ๋™์ ์ธ UI๋งŒ๋“œ๋Š” ๋ฒ•

1-1. HTML, CSS๋กœ ๋””์ž์ธ ํ•ด๋‘๊ธฐ

๋ชจ๋‹ฌ์ฐฝ์˜ ๊ธฐ๋ณธ๊ตฌ์กฐ

<div class="black-bg"> <div class="white-bg"> <h4>์ƒ์„ธํŽ˜์ด์ง€์ž„</h4> <p>์ƒ์„ธํŽ˜์ด์ง€ ๋‚ด์šฉ์ž„</p> </div> </div> body{ margin: 0; } div { box-sizing: border-box; } .black-bg{ width: 100%; height: 100%; background: rgba(0, 0, 0, 0.5); position: fixed; padding: 20px; } .white-bg{ width: 100%; background: white; border-radius: 8px; padding: 20px; }

1-2. UI์˜ ํ˜„์žฌ ์ƒํƒœ๋ฅผ ๋ฐ์ดํ„ฐ๋กœ ์ €์žฅํ•ด๋‘๊ธฐ

๋ชจ๋‹ฌ์ฐฝ์—ด๋ ธ๋‹ˆ : false

1-3. ๋ฐ์ดํ„ฐ์— ๋”ฐ๋ผ UI๊ฐ€ ์–ด๋–ป๊ฒŒ ๋ณด์ผ์ง€ ์ž‘์„ฑ

<h4 @click="๋ชจ๋‹ฌ์ฐฝ์—ด๋ ธ๋‹ˆ = true"> <button @click="๋ชจ๋‹ฌ์ฐฝ์—ด๋ ธ๋‹ˆ = false">๋‹ซ๊ธฐ</button>
728x90
๋ฐ˜์‘ํ˜•
LIST