我發現下面的在多個地方的代碼滑動左/右:幻燈片DIV左/右使用jQuery
$('#hello').hide('slide', {direction: 'left'}, 1000);
但是,我不能得到它的工作。這是我嘗試的簡約測試:
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en-us">
<head>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script>
$(document).ready(function() {
$("#test").click(function() {
$('#hello').hide('slide', {direction: 'left'}, 1000);
});
});
</script>
</head>
<body>
<article >
<div id="hello">
Hello
</div>
<p><span id="test">Test</span>
</arcticle>
</body>
我在Chrome和Safari中試過了,它不起作用。
什麼問題?還有其他工作方法可以向左/向右滑動嗎?
[這是因爲幻燈片是jQuery UI效果的一部分。](http://jqueryui.com/effect/) – Ohgodwhy 2013-02-12 00:07:16