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