CSS3에서 마우스로 그림을 터치하고 슬라이딩 블록으로 정보를 보여줍니다.

6176 단어 html+css
  • CSS3에서 마우스 터치 이미지, 슬라이딩 블록 표시 정보
  • 
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>    title>
        <style type="text/css">
            .box{
                /*         */
                width: 600px;
                height: 600px;
                /*         */
                margin: 10px auto 0;
                border: 1px solid pink;
                /*      */
                position: relative;
                /*    ,   */
                overflow: hidden;
            }
    
            .box img{
                /*         */
                width: 600px;
                height: 600px;
            }
    
            .box .pic_info{
                /*       ,  、  */
                width: 600px;
                height: 200px;
                /*     、    */
                background:rgba(0,0,0,0.5);
                /*        */
                color: #fff;
                /*      */
                position: absolute;
                left: 0;
                /*         ,             */
                top:600px;
                /*      、  、     */
                transition: all 500ms ease;
            }
    
            .box:hover .pic_info{
                /*      ,     ,        400px */
                top: 400px;
            }
    
    
        style>
    head>
    <body>
        <div class="box">
            <img src="4.jpg" alt="  ">
            <div class="pic_info">div>
        div>
    body>
    html>

    좋은 웹페이지 즐겨찾기