Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当您在网站上拖动某些东西时,有没有办法创建一个跟随鼠标的 div?
我希望 div 仅在用户拖动已设置为可拖动的内容时才可见。
我真的只是想要一种超级简单的方法来将拖动项目从只是一个幻影图像更改为我可以设计的不同的东西。
谢谢,伊恩
您可以在您的 html 正文上隐藏一个 div,然后在拖动时可以将 css 'display' 属性设置为 'block',最后使用鼠标事件的 clientx 和 clienty 属性和一点 javascript 来重新定位 div。
希望有帮助。