こういう手の形のポインターにしたい
コード.gs
function doGet() {
return HtmlService.createHtmlOutputFromFile("index");
}
|
意訳この機能がやること 指定したHTMLファイルを表示する |
index.html
<!DOCTYPE html>
<html>
<head>
<style>
button {
cursor: pointer;
}
</style>
</head>
<body>
<button>ボタン</button>
</body>
</html>
|
意訳ボタンのスタイル カーソルをポインターにする ボタン |
