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.
jqueryを使用してHTMLタイトルタグにスクロールマーキーを配置したいのですが、方法がわからず、オンラインで適切な説明がどこにも見つからないようです。誰か助けてくれませんか?
marqueeタグのようにスクロールしたいだけなら、それほど難しいことではありません。
marquee
(function titleMarquee() { document.title = document.title.substring(1)+document.title.substring(0,1); setTimeout(titleMarquee, 200); })();
これはかなり基本的なことですが、好みに合わせて微調整する方法についてのアイデアが得られるはずです。