gpt4 book ai didi

css - 有没有什么办法可以在 JavaScript 上为 CSS 模仿拖动事件?

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

我一直在研究一种在 CSS 上模仿拖动事件的方法。但我什么也没找到。我想做的是创建一个类似于 Gmail 应用程序菜单的移动菜单,我可以通过拖动它来查看。有什么想法吗?在此先感谢您的帮助!!

最佳答案

是的,你可以!有一个例子:https://codepen.io/100ants/pen/zYOPNrV

<textarea name="" id="" cols="30" rows="10" readonly></textarea>
<div class="menu">
Menu!
<div class="handle"></div>
</div>
body, html {
margin: 0;
padding: 0;
}
textarea {
height: 15px;
resize: vertical;
width: calc(50% + 9px);
position: relative;
z-index: 1;
box-sizing: border-box;
max-height: 118px;
cursor: unset;
min-height: 30px;
opacity: 0;
}
.menu {
background: #37474f;
padding: 50px 20px;
color: #fff;
margin-top: -131px;
position: relative;
.handle {
position: absolute;
top: 100%;
left: 50%;
width: 18px;
height: 18px;
background: #ffca28;
transform: translate(-50%, -50%);
border-radius: 50%;
border: 5px solid #fff;
}
}

关于css - 有没有什么办法可以在 JavaScript 上为 CSS 模仿拖动事件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57726136/

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