我想知道爲什麼JSFIDDLE完美的工作,但在我的服務器,它不起作用。看看下面的下面的代碼:從右到左滑動(不工作)
HTML
<div class="project">
<div class="project-col2">
<div class="project-mid-box">
<ul>
<a class="myButton"> <li> Project List 1 </li> </a>
<a class="myButton"> <li> Project List 2 </li> </a>
</ul>
</div>
</div>
<div class="project-col3 myDiv">
<div class="project-mid-box">
<p> HERE </p>
</div>
</div>
</div>
CSS
.project {overflow:hidden;}
.project h3 {color:#FFF;font-weight:normal;}
.project-col2 {float:left;width:50%;position:relative;}
.project-col3 {float:left;width:30%;position:relative;}
.project-mid-box {padding-left:10px;}
.project-mid-box ul li {border:1px solid #CCC;margin:2px 0;border-radius:5px;padding:5px;line-height:25px;}
.project-mid-box ul li:hover {background-color:#f7f7f7;
.myDiv {display:none;}
JS - 我添加了一個功能,因爲在的jsfiddle自動添加。
<script type="text/javascript">
$(document).ready(function() {
$(".myButton").click(function() {
// Set the effect type
var effect = 'slide';
// Set the options for the effect type chosen
var options = { direction: 'right' };
// Set the duration (default: 400 milliseconds)
var duration = 700;
$('.myDiv').toggle(effect, options, duration);
});
})
</script>
最後,我沒有忘記讓外部源jQuery庫
<script src="http://code.jquery.com/ui/1.11.2/jquery-ui.min.js"> </script>
應該完全工作在我的服務器上,但它不工作。我錯過了什麼嗎?
你包括兩名jQuery的庫,你只需要一個。 –