if (mouse.x < 0 && mouse.y > 0) { popup = document.createElement('div'); popup.style.position = 'absolute'; popup.style.width = '2cm'; popup.style.height = '1cm'; popup.style.top = '5%'; popup.style.left = '3%'; popup.style.marginTop = '-1cm'; popup.style.marginLeft = '-1cm'; popup.style.backgroundColor = 'green'; // popup.style.border = '1px solid black'; popup.style.textAlign = 'center'; popup.style.lineHeight = '1cm'; popup.style.color = 'white'; popup.innerHTML = '鎌倉殿'; document.body.appendChild(popup); 修改这里的字体类型
时间: 2023-11-28 16:49:49 浏览: 69
第7章 使用对话框代码【超实用VBA】
你可以添加一个新的 CSS 样式来修改字体类型。在 `popup` 对象上添加以下代码:
```
popup.style.fontFamily = 'Arial';
```
这将把字体类型更改为 Arial。你可以根据自己的需要修改字体类型。
阅读全文