我正在尝试创建一个双列页面,其中左侧单击的链接将导致来自另一个URL(在同一域中)的内容水平向右滑动。
This fiddle是我瞄准的一个很好的例子。
我无法弄清楚如何使用此脚本加载外部内容。 jQuery的.load(url);
似乎是实现这一目标的理想方式,但我无法使用上面提到的jQuery中的jQuery。
是否有人知道是否可以这样做,或者是否有更好的方法来达到同样的效果?
下面的小提琴代码。
HTML:
<div id="left">
<a href="#target1" class="panel">Target 1</a><br/>
<a href="#target2" class="panel">Target 2</a><br/>
<a href="#target3" class="panel">Target 3</a><br/>
</div>
<div id="right">
<div class="panel" id="target1" style="background:green">Target 1</div>
<div class="panel" id="target2" style="background:red">Target 2</div>
<div class="panel" id="target3" style="background:yellow">Target 3</div>
</div>
脚本:
jQuery(function($) {
$('a.panel').click(function() {
var $target = $($(this).attr('href')),
$other = $target.siblings('.active'),
animIn = function () {
$target.addClass('active').show().css({
left: -($target.width())
}).animate({
left: 0
}, 500);
};
if (!$target.hasClass('active') && $other.length > 0) {
$other.each(function(index, self) {
var $this = $(this);
$this.removeClass('active').animate({
left: -$this.width()
}, 500, animIn);
});
} else if (!$target.hasClass('active')) {
animIn();
}
});
});
CSS:
#left, #right {
position: relative;
float: left;
margin: 0 5px 0 0;
border: 1px solid black;
width: 200px;
height: 300px;
overflow: hidden;
}
div.panel {
position: absolute;
height: 100%;
width: 100%;
display: none;
}
答案 0 :(得分:0)
如果您要求页面上尚未提供的内容,最好的办法是添加一个服务器端组件(php,ruby等),您可以请求第二部分内容并让服务器发送它背部。
即
$("#target1).click(function(){
$.ajax({
url: "your-script.php",
data: {target: "send-target-one-please"},
success: function(){
//append your second piece of content here
}
});
});
然后在你的脚本(php)中:
function someFunction(){
//get your content here
$myContent = file_get_contents('../path/to/my/file');
echo json_encode($myContent);
}
显然这是伪代码,但它是一般的想法
答案 1 :(得分:0)
您可以更改animIn
功能以加载内容:
animIn = function () {
$target.load(URL, function() {
$target.addClass('active').show().css({
left: -($target.width())
}).animate({
left: 0
}, 500);
});
};
只需将URL
替换为实际网址即可。
更新:这是the full code:
jQuery(function($) {
$('a.panel').click(function() {
var $target = $($(this).attr('href')),
$other = $target.siblings('.active'),
animIn = function () {
$target.load('/echo/html/', {delay:0.5,html:$target.text()}, function() {
$target.addClass('active').show().css({
left: -($target.width())
}).animate({
left: 0
}, 500);
});
};
if (!$target.hasClass('active') && $other.length > 0) {
$other.each(function(index, self) {
var $this = $(this);
$this.removeClass('active').animate({
left: -$this.width()
}, 500, animIn);
});
} else if (!$target.hasClass('active')) {
animIn();
}
});
});