정의
param요소는 object요소에 의해 불러와지는 플러그인을 위한 매개변수를 정의 합니다.
속성
- name : 매개변수의 이름을 나타냅니다.
- value : 매개변수의 값을 나타냅니다.
설명
- param요소 단독으로는 아무것도 나타내지 않습니다.
- name, value 두 속성 모두 반드시 존재해야 하며, 어떤 값도 가질 수 있습니다.
함께 알아야 할 태그
예제
다음 예제는 플러그인(아래의 경우는 O3D 플러그인)으로 파라매터를 전달하는 예제입니다.
<!DOCTYPE HTML> <html lang="en"> <head> <title>O3D Utah Teapot</title> </head> <body> <p> <object type="application/vnd.o3d.auto"> <param name="o3d_features" value="FloatingPointTextures"> <img src="o3d-teapot.png" title="3D Utah Teapot illustration rendered using O3D." alt="When O3D renders the Utah Teapot, it appears as a squat teapot with a shiny metallic finish on which the surroundings are reflected, with a faint shadow caused by the lighting."> <p>To see the teapot actually rendered by O3D on your computer, please download and install the <a href="http://code.google.com/apis/o3d/docs/gettingstarted.html#install">O3D plugin</a>.</p> </object> <script src="o3d-teapot.js"></script> </p> </body> </html>