½ÃÀÛÆäÀÌÁö·Î Áñ°Üã±âÃß°¡
·Î±×ÀÎ
ȸ¿ø°¡ÀÔ l Ã⼮üũ l ¸¶ÀÌÆäÀÌÁö l CGIMALL
happycgi
ÀÚ·á½Ç »çÀÌÆ®µî·Ï ·©Å·100 ÇÁ·Î±×·¥¸®ºä °ü¸®ÀÚÃßõÀÚ·á Ãʺ¸°¡À̵å
Ä¿¹Â´ÏƼ
Àüü ÆîÃ帱â
Äü¸Þ´º¸µÅ© jquery , CSS , PHP , Javascript , ¹«·áÆùÆ® , ASP
»ó¼¼°Ë»ö
Ȩ > CSS > ±âŸȿ°ú > CSS 3D Flip Box-CSS¸¦ È°¿ëÇÑ 3D flip ¹Ú½º »ó¼¼Á¤º¸
»çÀÌÆ®µî·Ï
Ŭ¶ó¿ìµåű×
Javascript
PHP
css
ASP
html
mysql
jquery
API
image
Mobile
slide
°Ô½ÃÆÇ
¸Þ´º
ÇöÀçÁ¢¼ÓÀÚ ¸í »õ·Î°íħ
CSS 3D Flip Box-CSS¸¦ È°¿ëÇÑ 3D flip ¹Ú½º
¼Ò½ºÅë°èÁ¤º¸ ¿À·ù½Å°í ¹× ¹®ÀÇ
ÇØÇÇÆÀ
³×ƼÁð
Æ®À§ÅÍ·Î º¸³»±â ÆäÀ̽ººÏÀ¸·Î º¸³»±â
¼Ò½ººÐ·ù ±âŸȿ°ú
´Ù¿î·Îµå Ƚ¼ö 10 ȸ
°£´Ü¼³¸í CSS¸¦ È°¿ëÇÑ 3D flip ¹Ú½º
Æò°¡Çϱâ ÈǸ¢ÇÔ ¸Å¿ìÁÁÀ½ ÁÁÀ½ ±¦ÂúÀ½ º¸Åë º°·Î
ȨÆäÀÌÁö¹Ù·Î°¡±â ¼Ò½º´Ù¿î·Îµå µ¥¸ð ¹Ì¸®º¸±â ½ºÅ©·¦Çϱâ

CSS¸¦ È°¿ëÇÑ 3D flip ¹Ú½ºÀÔ´Ï´Ù.
- CSS 3D Çø³ ¹Ú½º. div·Î ÄÜÅÙÃ÷ µÚÁý±â ( Àüȯ ¹× 3D º¯Çü ). ¾Õ¸é. µÞ¸é. ¾Õ¸é. µÞ¸é. ¾Õ¸é. µÞ¸é.
 

HTML ±¸Á¶

<h1>CSS 3D FLIP BOX</h1>

<h3>Flipping content to a div (Transitions and 3D Transforms)</h3>


<div class="wrapper">

      <div class="col_third">

        <div class="hover panel">

          <div class="front">

            <div class="box1">

              <p>Front Side</p>

            </div>

          </div>

          <div class="back">

            <div class="box2">

              <p>Back Side</p>

            </div>

          </div>

        </div>

</div>


<div class="col_third">

        <div class="hover panel">

          <div class="front">

            <div class="box1">

              <p>Front Side</p>

            </div>

          </div>

          <div class="back">

            <div class="box2">

              <p>Back Side</p>

            </div>

          </div>

        </div>

</div>


<div class="col_third end">

        <div class="hover panel">

          <div class="front">

            <div class="box1">

              <p>Front Side</p>

            </div>

          </div>

          <div class="back">

            <div class="box2">

              <p>Back Side</p>

            </div>

          </div>

        </div>

      </div>

</div>



CSS ¼Ò½º

body {

background-color: #ecf0f1;

margin: 20px;

font-family: Arial, Tahoma; 

font-size: 20px; 

color: #666666; 

text-align: center;

}

p { color: #ffffff;  }


/*-=-=-=-=-=-=-=-=-=-*/

/* Column Grids */

/*-=-=-=-=-=-=-=-=-= */


.col_half { width: 49%; }

.col_third { width: 32%; }

.col_fourth { width: 23.5%; }

.col_fifth { width: 18.4%; }

.col_sixth { width: 15%; }

.col_three_fourth { width: 74.5%;}

.col_twothird{ width: 66%;}

.col_half,

.col_third,

.col_twothird,

.col_fourth,

.col_three_fourth,

.col_fifth{

position: relative;

display:inline;

display: inline-block;

float: left;

margin-right: 2%;

margin-bottom: 20px;

}

.end { margin-right: 0 !important; }


/*-=-=-=-=-=-=-=-=-=-=- */

/* Flip Panel */

/*-=-=-=-=-=-=-=-=-=-=- */


.wrapper{ width: 980px; margin: 0 auto;  background-color: #bdd3de; hoverflow: hidden;}


.panel {

margin: 0 auto;

height: 130px;  

position: relative;

-webkit-perspective: 600px;

-moz-perspective: 600px;

}


.panel .front,

.panel .back {

text-align: center;

}

.panel .front {

height: inherit;

position: absolute;

top: 0;

z-index: 900;

text-align: center;

-webkit-transform: rotateX(0deg) rotateY(0deg);

   -moz-transform: rotateX(0deg) rotateY(0deg);

-webkit-transform-style: preserve-3d;

   -moz-transform-style: preserve-3d;

-webkit-backface-visibility: hidden;

   -moz-backface-visibility: hidden;

-webkit-transition: all .4s ease-in-out;

   -moz-transition: all .4s ease-in-out;

-ms-transition: all .4s ease-in-out;

-o-transition: all .4s ease-in-out;

transition: all .4s ease-in-out;

}


.panel .back {

height: inherit;

position: absolute;

top: 0;

z-index: 1000;

-webkit-transform: rotateY(-180deg);

   -moz-transform: rotateY(-180deg);

-webkit-transform-style: preserve-3d;

   -moz-transform-style: preserve-3d;

-webkit-backface-visibility: hidden;

   -moz-backface-visibility: hidden;

-webkit-transition: all .4s ease-in-out;

   -moz-transition: all .4s ease-in-out;

-ms-transition: all .4s ease-in-out;

-o-transition: all .4s ease-in-out;

transition: all .4s ease-in-out;

}

.panel.flip .front {

z-index: 900;

-webkit-transform: rotateY(180deg);

-moz-transform: rotateY(180deg);

}

.panel.flip .back {

z-index: 1000;

-webkit-transform: rotateX(0deg) rotateY(0deg);

-moz-transform: rotateX(0deg) rotateY(0deg);

}

.box1{

background-color: #14bcc8;

width: 250px;

height: 150px;

margin: 0 auto;

padding: 20px;

border-radius: 10px;

-moz-border-radius: 10px;

-webkit-border-radius: 10px;

}

.box2{

background-color: #ff7e70;

width: 250px;

height: 150px;

margin: 0 auto;

padding: 20px;

border-radius: 10px;

-moz-border-radius: 10px;

-webkit-border-radius: 10px;

}



JS ¼Ò½º

$(document).ready(function(){

// set up hover panels

// although this can be done without JavaScript, we've attached these events

// because it causes the hover to be triggered when the element is tapped on a touch device

$('.hover').hover(function(){

$(this).addClass('flip');

},function(){

$(this).removeClass('flip');

});

});


 

³×ƼÁð ÀÇ°ß   ÀÌ¿ëÇϽŠÀÚ·áÀÇ Èı⸦ ÀÚÀ¯·Ó°Ô ÀÛ¼ºÇϼ¼¿ä. (»ó¾÷ÀûÀÎ ±¤°í ¹× µµ¹è¼º ±Û µîÀº »çÀüÅ뺸¾øÀÌ »èÁ¦µÉ ¼ö ÀÖ½À´Ï´Ù.)
³»¿ë ¾ÆÀ̵ð ÀÇ°ß³²±â±â
µî·ÏµÈ ÀÇ°ßÀÌ ¾ø½À´Ï´Ù.
1
À̸§
³»¿ë
:³×¸Â¾Æ¿ä: :È­³ª´Â±º¿ä: :Àá¿Í: :¿ì¿ïÇØ: :À̰ǾƳÄ: :¿ÕÇÏÇÏ: ¿Õ¿ôÀ½~ ³î·¥~
Æò°¡Çϱâ ÈǸ¢ÇÔ ¸Å¿ìÁÁÀ½ ÁÁÀ½ ±¦ÂúÀ½ º¸Åë º°·Î
µµ¹è¹æÁöÅ°
 28184848 º¸ÀÌ´Â µµ¹è¹æÁöÅ°¸¦ ÀÔ·ÂÇϼ¼¿ä.