gpt4 book ai didi

jquery - SlideToggle JQuery 从右到左

转载 作者:行者123 更新时间:2023-12-03 21:41:23 26 4
gpt4 key购买 nike

我是 JQ 的新人我在互联网上找到了这个脚本,它完全符合我的需要但我希望滑动是从右到左我该怎么做?请帮忙

这是代码

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.js" type="text/javascript"></script>
<script type="text/javascript">

$(document).ready(function(){

$(".slidingDiv").hide();
$(".show_hide").show();

$('.show_hide').click(function(){
$(".slidingDiv").slideToggle();
});

});

</script>
<style>

.slidingDiv {
height:300px;
background-color: #99CCFF;
padding:20px;
margin-top:10px;
border-bottom:5px solid #3399FF;
}

.show_hide {
display:none;
}
</style>
</head>

<body>

<div class="slidingDiv">
Fill this space with really interesting content. <a href="#" class="show_hide">hide</a></div>
<a href="#" class="show_hide">Show/hide</a>

最佳答案

您可以使用 additional effects as a part of jQuery-ui 来执行此操作

$('.show_hide').click(function () {
$(".slidingDiv").toggle("slide");
});

Test Link

关于jquery - SlideToggle JQuery 从右到左,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17271169/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com