이 페이지의 이전 버전을 보고 있습니다. 현재 버전 보기.

현재와 비교 페이지 이력 보기

« 이전 버전 8 현재 »

Change the font color for the text element named "Text1" on the current page.

Note

An element name can be changed from the "name change description" for the element. Refer to the following for details. ▶ Web Author 콘텐츠 제작 화면 알아보기

  <html>
  <head>
    <script src="wplayer-api.1.0.0.js"></script>        
    <script>
      const contentPropertyType = $wp.content.getPropertyType();
      $wp.content.getPage().getElement('Text1').setProperty(contentPropertyType.FONTCOLOR,"rgba(255, 0, 0, 1)");
    </script>
  </head>    
  </html>