관리 메뉴

moozi

thumbnail.html 본문

TIS_2018/응용sw2018_1기

thumbnail.html

moozi 2018. 4. 13. 15:33

<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <title>Thumbnail</title>

    <style>

        #box1,#box2,#box3{

            width:400px;

            height:300px;        

            position: relative;

            overflow: hidden;

        }

        #box1 img, #box2 img, #box3 img{

            width:100%;

            height:300px;

            opacity: 0.8;

            transition: 7s;

        }

        #box1 div{

            position: absolute;

            bottom:0;

            background: rgba(0,0,0,0.5);

            width:100%;

            color:#cccccc;

            padding-left: 10px;

            box-sizing: border-box;

            opacity:0;

            transition: 0.5s;

        }

        #box1:hover div{

            opacity: 1;

        }

        #box2 div,#box3 div{

            position: absolute;

            bottom:0;

            background: rgba(0,0,0,0.5);

            width:100%;

            color:#cccccc;

            padding-left: 10px;

            box-sizing: border-box;            

        }

        #box2:hover img{

            transform: scale(1.2);

            opacity: 1;

        }

        #box3{

            width:400px;

            height:300px;            

            background: url(img/pic01.jpg);

            background-size: 100% 100%;

/*            background-position: center;*/

        }

        

    </style>

</head>

<body>

    <div id="box1">

        <img src="img/pic01.jpg" alt="bmw">

        <div>

            <h3>BMW</h3>

            <p>BMW 2018년 신차 전시회</p>

        </div>

    </div>

    <div id="box2">

        <img src="img/pic01.jpg" alt="bmw">

        <div>

            <h3>BMW</h3>

            <p>BMW 2018년 신차 전시회</p>

        </div>

    </div>

    <div id="box3">

        <div>

            <h3>BMW</h3>

            <p>BMW 2018년 신차 전시회</p>

        </div>

    </div>

</body>

</html>

'TIS_2018 > 응용sw2018_1기' 카테고리의 다른 글

jsp연습문제01  (0) 2018.04.17
jQuery연습문제03  (0) 2018.04.13
2차 미니프로젝트- 개인 포트폴리오 웹사이트  (14) 2018.04.12
Ajax03.html  (0) 2018.04.12
ajax연습문제01  (0) 2018.04.11
Comments