好的,它变得很尴尬,已经搜索并尝试了大约 5 个小时,我只是在绕圈子跑......
场景很简单:它是用户个人资料的标题图像,可以将其拖到某个位置,然后将图像的顶部位置保存到数据库中。
多亏了 Beetroot-Beetroot 的“containment: 'parent'”,我才知道这段代码,它实际上会按照我的意愿做出反应!除了一个大问题。图片只是跳到顶部或底部。有没有平滑滚动?如果我将“父级”更改为-“父级”,它会很好地滚动,但是......当然不再存在遏制了。帮助?:D
JS
$(function(){
$(".headerimage").css('cursor','s-resize');
$(".headerimage").draggable({ containment: 'parent', scroll: false, axis: "y", stop: function(event, ui) {
var data = "profileheaderposition="+ui.position.top;
var destination = "/modules/users/profile/save.php";
get_data(data, destination, function(test){
notice(test);
});
}
});
});
所以最后但并非最不重要的 Header 是这样包含的:
<div class="<?php if ($user->id == $profileuser->id) echo "changer"; ?> ui-corner-all" id="profileheader" style="overflow: hidden; width: 650px; height: 260px; position:relative;">
<?php if($profile->profileheader){
$size = getimagesize($profile->profileheader);
?>
<img id="" class="draggable headerimage" style="position: absolute; top: <?php echo $profile->profileheaderposition; ?>px;" src="<?php echo $profile->profileheader; ?>" alt="profileheader" width="650" />
正如我所说,数小时的谷歌搜索没有给出任何结果 - 如果我不保存结果,它会工作得很好,但是哦,好吧......
- 编辑 -
现在我要大喊大叫了-.-我已经为此设置了赏金以及帮助我使用jsfiddle的工具,但我的网页上有一个访客帐户: http ://www.animize.de
在那里,您可以使用用户名登录页面:Gast 和 pw gast - 单击名称(gast)的右上角,您将看到配置文件 - 在那里您可以移动标题图片 - 当然它应该表现以另一种方式 - 帮助:(