웹사이트에 추가하기

스튜디오에서 제공하는 코드를 웹사이트에 추가해서 쇼룸(Showroom)을 실행시킬 수 있는 버튼을 추가할 수 있습니다.

<script>
  window.embeddedAitalkConfig = {
    domain: "https://kr-qa.ctown.ch/home/캠페인ID",
    type: 1, // Set this value to 1 through 5 to select the icon type
    position: {
      top: null,   
      bottom: ‘30px’,  // Set to ‘10px’ to position from the bottom
      left: null,  
      right: ‘30px’ // Set to ‘10px’ to position from the right
    }
  }
</script>
<script src=“https://kr-qa.ctown.ch/start/embed.js” defer></script>                            

type: 1 에서 숫자를 1 부터 5 까지 입력 가능하며 해당 숫자에 따라서 아이콘 이미지가 바뀌게 됩니다.

type: 1,

position 의 bottom 와 right 의 숫자를 바꾸어 아이콘 위치를 바꿀 수 있습니다.

bottom: ‘30px’,
right: ‘30px’ 

Last updated