https://www.codeigniter.com/user_guide/tutorial/index.html
访问该链接并查找页面右上角的目录按钮。我想把它应用到我正在制作的网页上。
你把这种设计技术叫做什么?有关如何操作的教程的任何链接?非常感谢。
https://www.codeigniter.com/user_guide/tutorial/index.html
访问该链接并查找页面右上角的目录按钮。我想把它应用到我正在制作的网页上。
你把这种设计技术叫做什么?有关如何操作的教程的任何链接?非常感谢。
要创建该菜单,您可以使用 css 和 jquery。创建一个div
position:absolute;top:-400px;width:auto;height:430px;
然后你用 jquery 为它制作动画。点击时,设置 top:0px。您还可以使用动画 jquery 函数。乐:
$(document).ready(function(){
$('div a').click(function(){
$(this).parent().css('top','0px');
$(this).addClass('opened');
$(this).click(function() {
if($(this).hasClass('opened')){
$(this).parent().css('top','-280px');
}
})
});
});
<div style="width:100%;background-color:red;position:absolute;height:300px;top:-280px;"><a href="javascript:void(0)" style="width:80px;height:20px;background-color:black;bottom:0;position:absolute;"></a></div>
这是一个示例代码。从这里你可以编辑它,你可以动画它。祝你好运!