달력

52024  이전 다음

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31

'FrontEnd/HTML5&CSS'에 해당되는 글 3건

  1. 2013.12.24 해상도 및 화면 방향에 따라 CSS 로딩 하는 방법
  2. 2013.12.05 HTML5 Video Events and API
  3. 2013.11.29 CSS 요소 숨기기..

<link href="low_portrait.css" rel="stylesheet" type="text/css"
media="screen and (orientation: portrait) and (max-width:479px)">
<link href="low_landscape.css" rel="stylesheet" type="text/css"
media="screen and (orientation: landscape)">
<link href="high_portrait.css" rel="stylesheet" type="text/css"
media="screen and (orientation: portrait) and (min-width:480px)">

'FrontEnd > HTML5&CSS' 카테고리의 다른 글

HTML5 Video Events and API  (0) 2013.12.05
CSS 요소 숨기기..  (0) 2013.11.29
Posted by 행복한삶~!!
|

Video control할때 참조하기 좋은 reference site  .. 


http://www.w3.org/2010/05/video/mediaevents.html

'FrontEnd > HTML5&CSS' 카테고리의 다른 글

해상도 및 화면 방향에 따라 CSS 로딩 하는 방법  (0) 2013.12.24
CSS 요소 숨기기..  (0) 2013.11.29
Posted by 행복한삶~!!
|

<div style="display:none">

<video id="sourcevid" autoplay="true" loop="true">

<source src="BigBuckBunny_640x360.mp4" type="video/mp4">

<source src="BigBuckBunny_640x360.ogv" type="video/ogg">

</video>

<canvas id="sourcecopy" width="640" height="360"></canvas>

</div>


이렇게 하면 간단히 요소를 숨길수 있다.. 

'FrontEnd > HTML5&CSS' 카테고리의 다른 글

해상도 및 화면 방향에 따라 CSS 로딩 하는 방법  (0) 2013.12.24
HTML5 Video Events and API  (0) 2013.12.05
Posted by 행복한삶~!!
|