今回は、インターフェースのプロンプトボックスに常駐するための JS の実装について説明します。 注意事項 は、インターフェースのプロンプトボックスに常駐するための JS の実装です。実際のケースを見てみましょう。
ビジネス シナリオ: マウスが要素内に移動すると、導入のためのプロンプト ボックスが表示されます。マウスを離すと自動的に消えます。 ToolTip.js と ToolTip.css を導入します
メインメソッド: ToolTip.show (プロンプトが必要な要素の ID (繰り返されない限り)、プロンプトが表示される HTML テキスト、幅 (オプション)、高さ (オプション) );
ToolTip.show (obj, id, html, width, height);
効果は次のとおりです:
1. テキストを表示します:
2: 画像を表示します
3:ウェブサイトを表示
js コード: F:Html5PluginsToolTipjsToolTip.js
(function () { var ToolTip = {}; /** * 显示函数 */ ToolTip._showTip = function (parentId, childId, html, width, height) { var parent = document.getElementById(parentId)//要提示的元素 var child = document.getElementById(childId); if (child === null) {//创建 var toolTip = document.createElement("p"); toolTip.classList = "ui-tooltip-box"; toolTip.id = childId; toolTip.innerHTML = html; parent.appendChild(toolTip); toolTip.style.width = width ? width + "px" : "auto" toolTip.style.height = height ? height + "px" : "auto" //定位: toolTip.style.position = "absolute"; toolTip.style.display = "block"; var left = parent.offsetLeft; var top = parent.offsetTop; if (left + toolTip.offsetWidth > document.body.clientWidth) { left = document.body.clientWidth / 2; } toolTip.style.left = left + "px"; toolTip.style.top = top + 20 + "px"; parent.onmouseleave = function (ev) { setTimeout(function () { //延迟: document.getElementById(childId).style.display = "none";//隐藏 }, 300); } } else { //显示 document.getElementById(childId).style.display = "block"; } }, /** * 调用入口 */ ToolTip.show = function (parentId, childId, html, width, height) { var parent = document.getElementById(obj) parent.onmouseenter = function (ev) { ToolTip._showTip(parentId, childId, html, width, height) } } window.ToolTip = ToolTip; })();//为防止污染,将方法写在匿名函数中
html コード: F:Html5PluginsToolTipToolTip.html
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>提示框</title> <link rel="stylesheet" type="text/css" href="ToolTip.css" rel="external nofollow" > </head> <body> <p class="ui-tooltip-demo"> <p><a class="ui-tooltip" id="tooltip-text">唐诗</a></p> <p><a class="ui-tooltip" id="tooltip-photo">背景图片</a></p> <p><a class="ui-tooltip" id="tooltip-poem">Yi人诗社</a></p> </p> <script src="js/ToolTip.js"></script> <script> //调用方式 ToolTip.show("tooltip-text", "01", "唐诗泛指创作于唐朝的诗" + "。唐诗是中华民族最珍贵的文化遗产之一,是" + "中华文化宝库中的一颗明珠," + "同时也对世界上许多民族和国家的文化发展产生了很大影响," + "对于后人研究唐代的政治、民情、风俗、" + "文化等都有重要的参考意义和价值。",300,90); ToolTip.show("tooltip-photo", "02", "<img src=\"imgs/bg.jpg\" height=\"80px\">",150,80); var html='<iframe src="http://www.toly.top" width="480px" height="300px"/>' ToolTip.show("tooltip-poem", "03", html); </script> </body> </html>
css コード: F:Html5PluginsToolTipToolTip.css
rreeeこの事例を読んだ後は、もう習得できたと思いますこの記事では、方法、より興味深い情報については php に注目してください。 中国の Web サイトのその他の関連記事!
推奨読書:
vue todo-listコンポーネントをnpmにアップロード
以上がJS 実装がインターフェイスのプロンプト ボックスに留まるの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。