> For the complete documentation index, see [llms.txt](https://docs.digitalhumans.jp/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.digitalhumans.jp/ops/experience/custom-start-button.md).

# スタートボタン：オリジナルのボタンを実装する

独自のUIで起動操作を行うための方法です。既存のWebサイトとの統合にも便利です。

### **使えるシーン**

* カスタムUIへの統合
* UX改善

### **実装のポイント**

* ボタン設置の例（HTML）
* 発話トリガーの呼び出し（JavaScript）
* DOM要素の取得とイベント登録方法

```jsx
<script>
	const uneeqInstance = new Uneeq(options)
</script>

<button id="start-btn">起動ボタン</button>
<script>
	document.getElementById('start-btn').addEventListener('click', () => {
		uneeqInstance.startSession()
	});
</script>
```
