- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在尝试显示带有 id base anchor 滚动链接的工具提示,工具提示将一直处于事件状态,直到激活 id div,之后它将显示下一个相关链接工具提示
但对我来说它在滚动时不显示,我正在使用工具提示和自定义代码用于堆栈溢出帖子中的 anchor 滚动链接
例如。 http://us.blackberry.com/smartphones/blackberry-passport/overview.html
这是我的代码
jQuery(document).ready(function($) {
$(".scroll").click(function(event) {
event.preventDefault();
$('html,body').animate( { scrollTop:$(this.hash).offset().top } , 1000);
});
});
/**
* This part handles the highlighting functionality.
* We use the scroll functionality again, some array creation and
* manipulation, class adding and class removing, and conditional testing
*/
var aChildren = $(".dotservices li").children(); // find the a children of the list items
var aArray = []; // create the empty aArray
for (var i=0; i < aChildren.length; i++) {
var aChild = aChildren[i];
var ahref = $(aChild).attr('href');
aArray.push(ahref);
} // this for loop fills the aArray with attribute href values
$(window).scroll(function(){
var windowPos = $(window).scrollTop(); // get the offset of the window from the top of page
var windowHeight = $(window).height(); // get the height of the window
var docHeight = $(document).height();
for (var i=0; i < aArray.length; i++) {
var theID = aArray[i];
var divPos = $(theID).offset().top; // get the offset of the div from the top of page
var divHeight = $(theID).height(); // get the height of the div in question
if (windowPos >= divPos && windowPos < (divPos + divHeight)) {
$("a[href='" + theID + "']").addClass("nav-active popactive");
$('.poptip').tooltipster({
position:'right'
});
$('.popactive').tooltipster('show');
} else {
$("a[href='" + theID + "']").removeClass("nav-active popactive");
$('.popactive').tooltipster('hide');
}
}
if(windowPos + windowHeight == docHeight) {
if (!$(".dotservices li:last-child a").hasClass("nav-active")) {
var navActiveCurrent = $(".nav-active").attr("href");
$("a[href='" + navActiveCurrent + "']").removeClass("nav-active");
/* $("a[href='" + navActiveCurrent + "']").removeClass("nav-active").tooltip('hide');*/
/* $(".dotservices li:last-child a").addClass("nav-active").tooltip('show');*/
}
}
});
.dotservices {
width: 40px;
height: auto;
padding: 0;
text-align: center;
font-weight: bold;
color: #444;
text-decoration: none;
position: fixed;
top: 20%;
left: 0.5%;
display: block;
z-index:9999;
}
.dotservices li {
list-style: none;
}
.dotservices a {
display: block;
clear: both;
text-decoration: none;
font-family: 'FontAwesome';
font-weight: normal;
font-style: normal;
text-align: center;
font-size: 14px;
color: #D1A94D;
line-height: 50px;
text-decoration: none;
width: 40px;
}
.dotservices a:before {
content: "\f111";
}
.dotservices a.nav-active:before {
content: "\f10c";
font-size: 18px;
}
.dotservices a:hover {
text-decoration: none;
}
<link rel="stylesheet" type="text/css" href="http://itracktraining.com/web4/css/tooltip-style.css" />
<link rel="stylesheet" type="text/css" href="http://itracktraining.com/web4/css/tooltipster.css" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
<script src="http://itracktraining.com/web4/js/jquery.js" type="text/javascript"></script>
<script src="http://itracktraining.com/web4/js/jquery-ui.min.js" type="text/javascript"></script>
<script type="text/javascript" src="http://itracktraining.com/web4/js/jquery.tooltipster.min.js"></script>
<div class="dotservices">
<ul>
<li><a href="#services1" class="scroll poptip active" title="3G implementation & integration"></a></li>
<li><a href="#services2" class="scroll poptip" title="Full Turnkey Solutions"></a></li>
<li><a href="#services3" class="scroll poptip" title="IBS & Das Solutions"></a></li>
<li><a href="#services4" class="scroll poptip" title="Spare Parts management Services"></a></li>
<li><a href="#services5" class="scroll poptip" title="Operation & Maintenances"></a></li>
<li><a href="#services6" class="scroll poptip" title="Technical Consultancy Services"></a></li>
</ul>
</div>
<div id="services1" style="background-color:#CCC; display:block; width:100%;">
<p>services1</p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
</div>
<div id="services2" style="background-color:#999; display:block; width:100%;">
<p>services2</p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
</div>
<div id="services3" style="background-color:#006; display:block; width:100%;">
<p>services3</p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
</div>
<div id="services4" style="background-color:#CCC; display:block; width:100%;">
<p>services4</p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
</div>
<div id="services5" style="background-color:#999; display:block; width:100%;">
<p>services5</p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
</div>
<div id="services6" style="background-color:#006; display:block; width:100%;">
<p>services6</p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
</div>
演示链接
最佳答案
试试这个。
jQuery(document).ready(function ($) {
$(".scroll").click(function (event) {
event.preventDefault();
$('html,body').animate({scrollTop: $(this.hash).offset().top}, 1000);
});
});
/**
* This part handles the highlighting functionality.
* We use the scroll functionality again, some array creation and
* manipulation, class adding and class removing, and conditional testing
*/
var aChildren = $(".dotservices li").children(); // find the a children of the list items
var aArray = []; // create the empty aArray
for (var i = 0; i < aChildren.length; i++) {
var aChild = aChildren[i];
var ahref = $(aChild).attr('href');
aArray.push(ahref);
} // this for loop fills the aArray with attribute href values
// added here tooltip
$('.poptip').tooltipster({
position: 'right',
onlyOne: true
});
$(window).scroll(function () {
var windowPos = $(window).scrollTop(); // get the offset of the window from the top of page
var windowHeight = $(window).height(); // get the height of the window
var docHeight = $(document).height();
for (var i = 0; i < aArray.length; i++) {
var theID = aArray[i];
var divPos = $(theID).offset().top; // get the offset of the div from the top of page
var divHeight = $(theID).height(); // get the height of the div in question
// if (windowPos >= divPos && windowPos < (divPos + divHeight)) {
if (windowPos <= divPos && divPos <= windowPos + (windowHeight/2)) {
$("a[href='" + theID + "']").addClass("nav-active popactive");
// removed from here and added above "$(window).scroll"
// $('.poptip').tooltipster({
// position: 'right',
// onlyOne: true
// });
$('.popactive').tooltipster('show');
} else {
$("a[href='" + theID + "']").removeClass("nav-active popactive");
}
}
if (windowPos + windowHeight == docHeight) {
if (!$(".dotservices li:last-child a").hasClass("nav-active")) {
var navActiveCurrent = $(".nav-active").attr("href");
$("a[href='" + navActiveCurrent + "']").removeClass("nav-active");
// $("a[href='" + navActiveCurrent + "']").removeClass("nav-active").tooltip('hide');
// $(".dotservices li:last-child a").addClass("nav-active").tooltip('show');
}
}
});
.dotservices {
width: 40px;
height: auto;
padding: 0;
text-align: center;
font-weight: bold;
color: #444;
text-decoration: none;
position: fixed;
top: 20%;
left: 0.5%;
display: block;
z-index:9999;
}
.dotservices li {
list-style: none;
}
.dotservices a {
display: block;
clear: both;
text-decoration: none;
font-family: 'FontAwesome';
font-weight: normal;
font-style: normal;
text-align: center;
font-size: 14px;
color: #D1A94D;
line-height: 50px;
text-decoration: none;
width: 40px;
}
.dotservices a:before {
content: "\f111";
}
.dotservices a.nav-active:before {
content: "\f10c";
font-size: 18px;
}
.dotservices a:hover {
text-decoration: none;
}
<link rel="stylesheet" type="text/css" href="http://itracktraining.com/web4/css/tooltip-style.css" />
<link rel="stylesheet" type="text/css" href="http://itracktraining.com/web4/css/tooltipster.css" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
<script src="http://itracktraining.com/web4/js/jquery.js" type="text/javascript"></script>
<script src="http://itracktraining.com/web4/js/jquery-ui.min.js" type="text/javascript"></script>
<script type="text/javascript" src="http://itracktraining.com/web4/js/jquery.tooltipster.min.js"></script>
<div class="dotservices">
<ul>
<li><a href="#services1" class="scroll poptip active" title="3G implementation & integration"></a></li>
<li><a href="#services2" class="scroll poptip" title="Full Turnkey Solutions"></a></li>
<li><a href="#services3" class="scroll poptip" title="IBS & Das Solutions"></a></li>
<li><a href="#services4" class="scroll poptip" title="Spare Parts management Services"></a></li>
<li><a href="#services5" class="scroll poptip" title="Operation & Maintenances"></a></li>
<li><a href="#services6" class="scroll poptip" title="Technical Consultancy Services"></a></li>
</ul>
</div>
<div id="services1" style="background-color:#CCC; display:block; width:100%;">
<p>services1</p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
</div>
<div id="services2" style="background-color:#999; display:block; width:100%;">
<p>services2</p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
</div>
<div id="services3" style="background-color:#006; display:block; width:100%;">
<p>services3</p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
</div>
<div id="services4" style="background-color:#CCC; display:block; width:100%;">
<p>services4</p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
</div>
<div id="services5" style="background-color:#999; display:block; width:100%;">
<p>services5</p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
</div>
<div id="services6" style="background-color:#006; display:block; width:100%;">
<p>services6</p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
</div>
<div>
<p></p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
</div>
关于javascript - 带有工具提示的 id base anchor 滚动链接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34545805/
我的 friend 编写了一个程序,它比较随机排列的骰子面,以找到分布最均匀的面——尤其是当面不仅仅是序列时。 我将他的程序翻译成 haskell 是因为我一直在寻找一个理由来让别人知道 haskel
我需要对表单中的某些字段进行评论/提示。我的想法是在模型中描述它,就像attributeLabels一样。我该怎么做? 然后它会是理想的,如果 Gii 模型(和 Crud)生成器直接从 mysql 列
我们使用 FastReport 来生成报告。事实上,我们为访问源代码付费。 我们目前使用的是 FastReport 的最新稳定版本。虽然它对于我们的生产来说足够稳定,但每当我编译时,我都会看到以下内容
我需要创建一个对话框/提示,包括用于用户输入的文本框。我的问题是,确认对话框后如何获取文本?通常我会为此创建一个类,将文本保存在属性中。不过我想使用 XAML 设计对话框。因此,我必须以某种方式扩展
我想提示用户是否要执行操作(删除) - 用警报框说"is"或“否”,如果是,则运行删除脚本,如果否,则不执行任何操作 我不太了解 javascript,因此是否有人可以使用 javascript 获得
所以我正在编写一个简单的 JS 代码。我们刚刚开始学习函数。我需要创建一个名为“printStars”的函数。 我需要从用户那里获取一个号码,并根据该号码打印“*”。 这就是我所做的:
我在我的页面上添加了一个提示,但它在页面加载之前加载了。如何仅在整个页面可见时才显示消息? 这是我的提示: if (name == null || name == "") { txt == "No
我在我的页面上添加了一个提示,但它在页面加载之前加载了。如何仅在整个页面可见时才显示消息? 这是我的提示: if (name == null || name == "") { txt == "No
我正在自定义我的 zsh 提示,并发现以下内容来检查是否有任何后台作业: if [[ $(jobs | wc -l) -gt 0 ]]; then # has background job(s)
这个问题在这里已经有了答案: JavaScript object: access variable property by name as string [duplicate] (3 个答案) pa
我正在尝试用 javascript 制作一个简单的数学练习程序。在提示警报中给出不同的值,并将答案与用户输入进行比较。这是代码: Calculations generate(); functio
在这段代码中,尽管我使用了文本对齐属性在“编辑文本” View 的中心设置“提示”。但它无法正常工作。 最佳答案 尝试 关于android - 如何在编辑文本的中心对齐文本(提示),我们在Sta
我正在尝试让我的 EditText 显示一个提示,例如“请在此处输入答案”,当用户点击 EditText 以键入他们的答案时,文本应该消失并留空,以便他们在其中输入答案. 截至目前,这就是我的 .xm
我当前的 android 应用程序中有两个微调器,我想要一个默认值,例如 editText 的 android:hint 功能。有没有办法这样做,但不会将提示添加到填充微调器的字符串数组。例如从微调器
如果我的表单已完全填写,我如何提示“感谢您填写表单,“name”!” function submit_onclick() { if(confirm("Thanks for completing t
我刚刚了解了prompt()命令;我知道 Prompt() 命令以字符串的形式返回用户输入。我正在搞乱下面的程序,我输入了Per“Dead”Ohlin作为男性名字。为什么这有效并且没有引起任何问题?
void openUpNow(FILE *x, FILE *y) { x = fopen("xwhatever", "r"); y = fopen("ywhatever", "r");
我有一个作业正在处理,但我在使用 prompt() 方法时遇到了问题。我看到我可以做一个提示,但我需要几个并且有数量。 例如... 我创建了一个 HTML 表格,其中包含许多艺术家和包含 DVD、CD
我正在学习 Big Nerd Ranch 的 iOS Programming, 2nd Edition,我已经来到第 4 章挑战:标题。该练习暗示我感到困惑;它说我需要做一些我认为不需要做的事情。 到
抱歉,如果这是微不足道的,但我没有找到任何解决此问题的建议。我在 Ubuntu 上,我的 Yii 项目需要 PHPUnit。我已经安装了 PHPUnit 两次,方法是下载 phpunit.phar 并
我是一名优秀的程序员,十分优秀!