如何在HTML电子邮件中添加光标跟踪

时间:2013-12-20 02:54:12

标签: javascript html html-email

有没有人知道一种方法,我可以将http://rainbow.arch.scriptmania.com/scripts/flower_cursor_trail.html的光标跟踪添加到通过gamil / outlook发送的电子邮件中?到目前为止,只是复制粘贴javascript似乎是一个死胡同。

1 个答案:

答案 0 :(得分:2)

Javascript无法在电子邮件中使用。你唯一的镜头是CSS cursor属性,它将遵循:

<style>
  body { 
    cursor: url("https://somesite.com/rose.cur"), auto 
  }
</style>