关于这个主题有类似的问题,但不一样。我有一个滚动的jQuery功能,使用选项卡进行选择并自动化。我不能轻易地改变这种布局,因为它是动态的,并且基于PHP中传递的所选数组中有多少项。标记代码看起来像这样......(最后请参阅PHP)
<div id="tabs" class="clients" style="display:none;">
<a class="" href="#">1</a>
<a class="" href="#">2</a>
<a class="" href="#">3</a>
<a class="" href="#">4</a>
<a class="activeSlide" href="#">5</a>
</div>
当它滚动或选中tab时,它将成为activeSlide类。我打算在一些客户端上使用display:none(在CSS中)来隐藏选项卡,并希望在我的前进/后退中包含这个箭头布局,并绑定某种类型的JavaScript ...
<div id="slider-controls">
<a href="#" id="prev"><img src="_img/_sliders/prev.gif" width="41" height="17" /></a> <span><img src="_img/blank.gif" width="1" height="1" /></span>
<a href="#" id="next"><img src="_img/_sliders/next.gif" width="41" height="17" /></a>
</div>
使用现有jQuery进行更简单修复的任何见解,我应该寻找的内容,以及是否可以简单地添加JavaScript以使用新的前进/后退标签覆盖现有代码。
现在这里是我的PHP代码,此时可以看到这一切来自哪里,你可以看到我有一个暂停按钮(不那么重要)和一个不在所有项目中的客户案例研究,所以一个if / else。更重要的不仅仅是让它发挥作用,我想学习一种更好的方法来解决这个问题,以及它如何适用于那些有更多时间的人。
<?php if ($num_projs > 0){ ?>
<div id="slider">
<div id="photos">
<!-- dump all photos here, then manipulate them via tabs with jQuery -->
<?php
foreach($projects as $project){
if($project['project_media_use'] == 'video' and $project['project_video'] != ''){
?>
<div id="<?php print stripslashes($project['project_name']);?>" title="<?php print stripslashes($project['project_desc']);?>" class="video"><iframe src="http://player.vimeo.com/video/<?php print $project['project_video'];?>?title=0&byline=0&portrait=0" width="606" height="348" marginheight="0" marginwidth="0" frameborder="0" webkitAllowFullScreen allowFullScreen></iframe></div>
<?php }else{ ?>
<div id="<?php print stripslashes($project['project_name']);?>" title="<?php print stripslashes($project['project_desc']);?>" style="background-image: url('_img/_cms_uploads/_projects/<?php print $project['project_image'];?>')"></div>
<?php } } ?>
</div>
<div id="slider-bottom"> <!-- added display:none; to hide tabs - Shane -->
<div style="display:none;" id="tabs" class="clients"></div> <!-- tabs are created automatically based on number of divs within "photos" div -->
<?php if($clientCaseStudy != ''){?>
<div id="links">
<!-- shane -->
<a><img src="_img/_sliders/pause.gif" id="pause" width="20" height="17"/></a><span><img src="_img/blank.gif" width="1" height="1" /></span>
<a id="prev"><img src="_img/_sliders/prev.gif" width="41" height="17" /></a><span><img src="_img/blank.gif" width="1" height="1" /></span><a id="next"><img src="_img/_sliders/next.gif" width="41" height="17" /></a><br />
<a style="text-align: left;" href="/<?php print $clientCaseStudy + " ";?>" rel="casestudy">CASE STUDY ></a> <div style="clear:left"></div>
<!-- shane -->
</div><?php } else{?>
<div id="links"><a><img src="_img/_sliders/pause.gif" id="pause" width="20" height="17"/></a><span><img src="_img/blank.gif" width="1" height="1" /></span>
<a id="prev"><img src="_img/_sliders/prev.gif" width="41" height="17" /></a><span><img src="_img/blank.gif" width="1" height="1" /></span><a id="next"><img src="_img/_sliders/next.gif" width="41" height="17" /></a>
</div>
<?php } ?>
</div>
</div>
<?php } ?>
如果有帮助,该网站正在使用Twitter Bootstrap。
答案 0 :(得分:0)
我最终搞清楚这一点,并认为我会分享,以防其他人遇到同样的情况。它涉及操纵JavaScript文件,添加最后两行代码......
$(document).ready(function() {
$('#photos').cycle({
fx: 'turnDown',
speed: 'slow',
timeout: 9000,
pager: '#tabs',
before: onBefore,
after: onAfter,
next: '#next', //added shane
prev: '#prev' //added shane
});
然后将这种性质的东西添加到另一个文件......
<div class="nav">
<a id="prev" href="#">Prev</a>
<a id="next" href="#">Next</a>
</div>
...让我能够导航或使用标签。 这个网站http://jquery.malsup.com/cycle/int2.html非常有助于搞清楚所有这些,并且看起来是jQuery Cycle插件的一部分。