0

有没有办法改变这个脚本以用作盲目效果。

// Andy Langton's show/hide/mini-accordion - updated 23/11/2009
// Latest version @ http://andylangton.co.uk/jquery-show-hide

// this tells jquery to run the function below once the DOM is ready
$(document).ready(function() {

// choose text for the show/hide link - can contain HTML (e.g. an image)
var showText='';
var hideText='';

// initialise the visibility check
var is_visible = false;

// append show/hide links to the element directly preceding the element with a class of "toggle"
$('.toggle').prev().append(' <a href="#" class="toggleLink">'+showText+'</a>');

// hide all of the elements with a class of 'toggle'
$('.toggle').hide();

// capture clicks on the toggle links
$('a.toggleLink').click(function() {

// switch visibility
is_visible = !is_visible;

// toggle the display - uncomment the next line for a basic "accordion" style
//$('.toggle').hide();$('a.toggleLink').html(showText);
$(this).parent().next('.toggle').toggle('slow');

// return false so any link destination is not followed
return false;

});
});

FYI-
Where it says:
var showText='';
var hideText='';

It was originally:
var showText='Show';
var hideText='Hide';

我删除了显示/隐藏文本,因为我将链接应用到不同的文本区域。我喜欢 Blind 效果,而不是这种 Toggle 效果,如果可能的话,我需要知道如何应用它。我找不到一个基本的盲效果脚本,它允许将链接应用到任何文本,而不是按钮或静态文本。

谢谢!希望你能帮忙!特蕾西

4

1 回答 1

1

我好像明白了,呵呵!通过更改以下行中的 1 个单词:

$(this).parent().next('.toggle').toggle('slow');

改为:

$(this).parent().next('.toggle').slideToggle('slow');

简单地改变:
.toggle.slideToggle

我还完全删除了不需要的行:

var showText='';
var hideText='';

原来是这样说的:

var showText='Show';
var hideText='Hide';

因为我想应用链接来激活隐藏的 DIV 到各种文本。

还删除了与此相关的另一行:

$('.toggle').prev().append(' <a href="#" class="toggleLink">'+showText+'</a>');

回到使其成为滑动效果 [直接向下/向上滑动与从上/左角进/出]:在我发现更改.toggle.slideToggle成功之后,我将行替换为:

$(this).parent().next('.toggle').animate({"height": "toggle"},{duration: 1000});

代替:

$(this).parent().next('.toggle').slideToggle('slow');

现在我可以控制速度,这使得滑动更顺畅。

对于 HTML,只需将类“toggleLink”应用于任何带有 href="#" 的链接。对于隐藏的 DIV,应用“toggle”类。

于 2010-03-13T16:51:49.907 回答