TIL(퍼블리싱) -9

hoin_lee·2023년 5월 4일
0

TIL

목록 보기
180/236

publishing

모든 진행의 css부분은 styles 로 import받은 module.css를 사용했습니다.

const Dropdown1 = () => {
  return (
    <div>
      <div className={styles.dropdown}>
        <button className={styles.dropdown_btn}>Real Estate Type</button>
        <div className={styles.dropdown_submenu}>
            <a href="#none">All</a>
            <a href="#none">One room</a>
            <a href="#none">1.5 rooms</a>
            <a href="#none">Two Room</a>
            <a href="#none">Three Room</a>
            <a href="#none">Officetel</a>
            <a href="#none">Apartment</a>
        </div>
      </div>
    </div>
  );
};

CSS

.dropdown{
    display: inline-block;
    /* width : 200px 일 경우 자식요소 width에 inherit을 써서 자동적으로 상속되게 만들자 */
}
.dropdown:hover .dropdown_submenu {
    /* 부모요소에 hover가 될 경우 자식요소가 영향 */
    display: block;
}
.dropdown_btn{
    width: 200px;
    padding: 10px;
    font-size: 18px;
    background-color: yellowgreen;
    color: #fff;
    border: none;
    outline: none;
    cursor: pointer;
}
.dropdown_submenu{
    display: none;
    width: 200px;
    box-shadow: 0 0 10px rgba(0,0,0,0.17);
}


.dropdown_submenu a {
    display: block;
    color:#222;
    padding: 7px;
    text-align: center;
}

.dropdown_submenu a:hover {
    background-color: #eee;
}

HoverDetail - 마우스 hover시 detail 요소 표시

const HoverDetail = () => {
  return (
    <div className={styles.items}>
      <div className={styles.item}>
        <img src={`${process.env.PUBLIC_URL}/assets/product-01.jpg`} alt="" />
        <div className={styles.caption}>
          <h2>Rirakuma doll 25cm</h2>
          <p>
            Lorem ipsum dolor sit amet consectetur adipisicing elit. Nam, quis
            eos. Porro minima officia
          </p>
          <p>
            Price : <s>$12</s> → $10
          </p>
          <a href="">View Details</a>
        </div>
      </div>
	</div>
  );
};

CSS

.items{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.item{
    display: inline-block;
    width: 300px;
    height: 300px;
    position: relative;
    margin: 10px;
}
.item > img {
    width: 100%;
    height: 100%;
}
.caption {
    width: 300px;
    height: 300px;
    background-color: #0000009f;
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    padding: 20px;
    box-sizing: border-box;
    padding-top: 40px ;
    opacity: 0;
    transition: 0.5s;
}
.caption a {
    color: #fff;
    background-color: teal;
    padding: 7px;
    border-radius: 3px;
}
.caption a:hover {
    background-color: #fff;
    color: #000;
}

.item:hover .caption {
    opacity: 1;
}

HoverToolTip - 마우스 hover시 TOOLTIP창 떠오르기

주의할 점

  • 어떤 요소든 position:absolute를 주는 순간 모두 inline-block으로 변해버린다.
  • transform은 한번에 주는 것이 좋다. 2개를 따로따로 줄 경우 아래쪽에 있는 코드가 위에 있는 코드를 덮어버린다.
  • 가상 클래스:after,:beforecontent속성으로 시작하며 해당 선택자의 자식요소가 된다. 고로 가상클래스를 붙인 선택자와 가상 클래스 둘 다 position:absolute속성을 주게 될 경우 부모 요소의 absoluterelative가 있다고 판단한다.
    ex) span:after일 경우 span이 부모요소 :after가 자식요소가 되며 둘 다 position:absolute를 가지고 있을 경우 spanrelative또한 있다고 판단한다.
  • display:none은 아예 위치나 요소 전체가 없어지는 것이기에 opacity 속성이 적용되지 않는다
  • visibility 속성을 사용하면 요소는 없어 hover이벤트등이 동작하지 않지만 위치는 그대로 있어서 opacity속성이 적용된다.
const HoverToolTip = () => {
  return (
    <div className={styles.container}>
      <div className={styles.icon}>
        <img src={`${process.env.PUBLIC_URL}/assets/HtmlIcon.jpg`}  />
        <span>
        Html . Lorem ipsum dolor, sit amet consectetur adipisicing elit.
        </span>
      </div>
    </div>
  );
};

CSS

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.icon{
    width: 180px;
    height: 230px;
    margin: 15px;
    border: 1px solid red;
    position: relative;
}
.icon img {
    width: 100%;
    height: 100%;
}
.icon span {
    position: absolute;
    background-color: #000;
    color: #fff;
    width: 300px;
    text-align: center;
    padding: 10px;
    border-radius: 5px;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    /* display: none; */
    opacity: 0;
    transition: 0.5s;
    visibility: hidden;
}
.icon span:after {
    content: '';
    position: absolute;
    background-color: black;
    width: 10px;
    height: 10px;
    transform:rotate(45deg) translateX(-50%);
    bottom: -5px;
    left: 50%;
}

.icon:hover span {
    /* display: block; */
    visibility: visible;
    opacity: 1;
}
profile
https://mo-i-programmers.tistory.com/

0개의 댓글