gpt4 book ai didi

javascript - 如何让元素而不是元素漂浮在主体内部

转载 作者:行者123 更新时间:2023-11-28 18:23:16 25 4
gpt4 key购买 nike

我有一个使用 javascript 在 div 内部 float 的图像。 div 位于长卷轴页面的第一部分。因此,图像在第一个 div 中弹跳,但当我向下滚动时,它仍保留在该 div 中。我希望当用户向下滚动时图像向下移动到页面(在正文中),并且图像从浏览器窗口弹起并使用浏览器窗口作为引用,而不是如下代码中所示的容器 div。

我尝试过将 div 放入正文中,但我认为这与 javascript 有关。

图像本质上被困在container-fluid内部。将其从该容器中取出并将脚本的x和y更改为$(window).width() 和 $(window).width() 没有起到作用。

<div class="container-fluid">
<div class="section-1-new">
<li><img src="<?php echo get_template_directory_uri(); ?>/images/image.png"></a></li>
</div>
</div>

<script>
$.fn.bounce = function(options) {

var settings = $.extend({
speed: 10
}, options);

return $(this).each(function() {

var $this = $(this),
$parent = $this.parent(),
height = $parent.height(),
width = $parent.width(),
top = Math.floor(Math.random() * (height / 2)) + height / 4,
left = Math.floor(Math.random() * (width / 2)) + width / 4,
vectorX = settings.speed * (Math.random() > 0.5 ? 1 : -1),
vectorY = settings.speed * (Math.random() > 0.5 ? 1 : -1);

// place initialy in a random location
$this.css({
'top': top,
'left': left
}).data('vector', {
'x': vectorX,
'y': vectorY
});

var move = function($e) {

var offset = $e.offset(),
width = $e.width(),
height = $e.height(),
vector = $e.data('vector'),
$parent = $e.parent();

if (offset.left <= 0 && vector.x < 0) {
vector.x = -1 * vector.x;
}
if ((offset.left + width) >= $parent.width()) {
vector.x = -1 * vector.x;
}
if (offset.top <= 0 && vector.y < 0) {
vector.y = -1 * vector.y;
}
if ((offset.top + height) >= $parent.height()) {
vector.y = -1 * vector.y;
}

$e.css({
'top': offset.top + vector.y + 'px',
'left': offset.left + vector.x + 'px'
}).data('vector', {
'x': vector.x,
'y': vector.y
});

setTimeout(function() {
move($e);
}, 0);

vectorX = settings.speed * (Math.random() > 0.5 ? 0.1 : -0.1),
vectorY = settings.speed * (Math.random() > 0.5 ? 0.1 : -0.1);

};

move($this);
});

};

$(function() {
$('.section-1-new li').bounce({
'speed': 1.8
});
});

最佳答案

您需要这样设置 CSS:

position: absolute;
left: 50%;
top: 50%;

关于javascript - 如何让元素而不是元素漂浮在主体内部,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39583440/

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