Posts
Q&A
live sass complier ๋ฒ์ ๋ฌธ์
์๋ ํ์ธ์!์ต์คํ ์ ์ญ์ ํ๊ณ ์ฌ์ค์นํ๋๋ ์ฌ์ฉ์ > ํ์ฅ์live cass compiler๊ฐ ์๊ฒจ์ ์ธํ ์ ํ์ต๋๋ค~ ๊ฐ์ฌํฉ๋๋ค.
- 1
- 2
- 585
Q&A
๊ฐ์ํด๋์ค ์ฌ๋ฐฑ์๊น ๋ฌธ์
๋ง์ฐ์ค ์ฌ๋ฆฌ๋ฉด ๋ฐฐ๊ฒฝ์ด๋ฏธ์ง ๋ณ๊ฒฝํ๊ธฐ ABOUT INSTRUCTOR CLASS LOCATION $(".navi li").mouseenter(function () { var dataImg = $(this).attr("data-img"); $(".photo").css({ "background-image": "url(" + dataImg + ")" }); }); $(".navi li").mouseleave(function () { $(".photo").css({ "background-image": ''}); }); ์๋ ํ์ธ์~html๊ณผ css ํ์ผ ์ฝ๋ ์ฌ๋ฆฝ๋๋ค.๊ฐ์ฌํฉ๋๋ค~ @charset 'utf-8'; /* Fontawesome 4.7 */ @import url("https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"); @import url("https://fonts.googleapis.com/css2?family=Monoton&display=swap"); @import url("https://fonts.googleapis.com/css2?family=Montserrat&display=swap"); @import url("https://fonts.googleapis.com/css2?family=Raleway&display=swap"); body { margin: 0; font-family: 'Raleway', sans-serif; /* background-color: #000; */ } ul{list-style: none; padding: 0; margin: 0;} .navi{} .navi { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 100; } .navi li{} .navi li a{ font-size: 4em; /* font-weight: bold; */ text-decoration: none; color: #fff; position: relative; } .navi li a::after{ content: attr(data-txt); position: absolute; color: blueviolet; top: 0; left: 0; width: 0; overflow: hidden; transition: 0.5s; z-index: 10; } .navi li a:hover:after{ width: 100%; } .photo{ position: absolute; width: 100%; height: 100%; top: 0; left: 0; background-image: url(./images/portrait-initial.jpg); background-repeat: no-repeat; background-size: cover; background-position: center center; transition: 0.5s; }
- 1
- 2
- 447