gpt4 book ai didi

javascript - jquery中的 float 菜单工具栏

转载 作者:搜寻专家 更新时间:2023-11-01 04:27:30 25 4
gpt4 key购买 nike

我尝试创建一个类似 Aloha 编辑器的 float 菜单,但它无法正常工作。任何人都可以帮助我了解 jquery 中 float 菜单的基本示例。

我不是在寻找菜单 float 我需要在 Aloha 编辑器中 float 类似的工具栏

$(document).ready(function() {
var fBox = $('#box');
fBox.draggable();
$(".columns").click(function(e){
var mouseXPos = e.pageX;
var mouseYPos = e.pageY;
console.log("mouseXPos:" + mouseXPos + "cleft:" +mouseYPos);
fBox.animate({top:mouseYPos},1000);
fBox.animate({left:mouseXPos},1000);
});
});

CSS

<style>
#page{width:600px;margin:0 auto;}
#page .columns{float:left;width:250px;}
#box{ background-color: #FFFFFF;
border: 1px solid #CCCCCC;
left: 749px;
opacity: 0.9;
padding: 0 10px;
position: absolute;
top: 35px;
width: 216px;}
</style>

HTML

<div id="page">
<div class="columns">
Lorem Ipsum is simply dummy text of the printing and typesetting industry.
Lorem Ipsum is simply dummy text of the printing and typesetting industry.
Lorem Ipsum is simply dummy text of the printing and typesetting industry.
Lorem Ipsum is simply dummy text of the printing and typesetting industry.
</div>
<div class="columns">
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum is simply dummy text of the printing and typesetting industry.
</div>
<div id="box">
<h2>hello world</h2>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. </p>
</div>
</div>

示例 float 工具栏 http://elankeeran.com/manish/prototype/alohaEditor/

最佳答案

关于javascript - jquery中的 float 菜单工具栏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6080422/

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