当您点击蓝色按钮时,我的网站会从右侧滑动:
正如您可能看到的那样,水平滚动条允许访问者在活动之前和之后看到滑动形式。 这就是问题,我希望有人可以帮我解决。
这是我正在使用的jQuery代码:
<script type="text/javascript">
$(document).ready(function()
{
function positioningForm()
{
$('#insider').css({"right": "-535px"}).show();
}
function slideFromRight()
{
$('#insider').animate(
{right: "0px"},
{duration: 'slow',easing: 'easeOutElastic'});
}
function slideToBeginning() {
$('#insider').animate(
{right: "-535px"},
{duration: 'slow',easing: 'easeOutElastic'});
}
// Positioning the insider at the time of page loading
positioningForm();
var state = 0;
$('.right_btn').click(function() {
if(state == 0) {
//do the magic :)
slideFromRight();
state = 1;
} else if( state == 1) {
//unroll the magic :)
slideToBeginning();
state=0;
}
});
});
</script>