有没有人知道一种方法,我可以将http://rainbow.arch.scriptmania.com/scripts/flower_cursor_trail.html的光标跟踪添加到通过gamil / outlook发送的电子邮件中?到目前为止,只是复制粘贴javascript似乎是一个死胡同。
答案 0 :(得分:2)
Javascript无法在电子邮件中使用。你唯一的镜头是CSS cursor
属性,它将遵循:
<style>
body {
cursor: url("https://somesite.com/rose.cur"), auto
}
</style>