gpt4 book ai didi

javascript - 带有固定顶部菜单的翻转菜单

转载 作者:行者123 更新时间:2023-11-28 01:48:04 25 4
gpt4 key购买 nike

我有疑问。

我需要实现一个翻转菜单,但在互联网上我只找到了使用 css 转换和 vendor 前缀的示例。但是所有示例都显示不固定的 div,并且下面的 css 有一个固定的菜单(复制和粘贴代码并减少网络,不是很漂亮)并且当我有一个菜单并且放置字体和返回 div 的方法时不'不工作。

我需要这方面的帮助。我需要一种将整个网站(包括设置菜单)替换为其他内容(作为翻页的好方法)的方法。

示例:http://davidwalsh.name/css-flip

我需要水平翻转和右水平翻转。

非常感谢。

代码笔:http://codepen.io/anon/pen/BuHql

HTML:

<div class="nav">
<ul>
<li><a href="">Home</a></li>
<li><a href="">CSS</a></li>
<li><a href="">PHP</a></li>
<li><a href="">SEO</a></li>
<li><a href="">jQuery</a></li>
<li><a href="">Wordpress</a></li>
<li><a href="">Services</a></li>
</ul>
<div class="clear"></div>
</div>
</div>

CSS:

body { height: 800px; background: black; }
.nav{ background: white; z-index: 9999; position: fixed; left: 0; top: 0; width: 100%;}

.nav { height: 42px; background: white;}
.nav ul { list-style: none; }
.nav ul li{float: left; margin-top: 6px; padding: 6px; border-right: 1px solid #ACACAC;}
.nav ul li:first-child{ padding-left: 0;}
.nav ul li a { }
.nav ul li a:hover{ text-decoration: underline;}

最佳答案

在其他情况下,一种简单的方法是使用以下结构:

HTML:

<div class="flipper">
<div class="front">Front content</div>
<div class="back">Back content</div>
</div>

CSS:

/*Placing colors to facilitate understanding.*/
.front { background: green; }
.back { background: red; }

/*Add this class to a ".flipper" element using the way that is well to you (using a click, a hover or any other trigger).*/
.flip {
transform: rotateY(180deg);
-webkit-transform: rotateY(180deg);
/*Add others vendors styles to more compatibility*/
}
/*Configuring the duration and the 3d mode of command*/
.flipper {
position: relative; /*relative is very important*/
transform-style: preserve-3d;
-webkit-transform-style: preserve-3d;
transition: 2s;
-webkit-transition: 0.6s;
}

/*Required for no appear both at the same time*/
.front {
z-index: 2;
}

/*Causes the back start hidden (it is rotated 180 degrees, so it will not appear)*/
.back {
transform: rotateY(180deg);
-webkit-transform: rotateY(180deg);
}

/*Hide the rear face during the flip.*/
.front, .back {
position: relative; /*Again, the relative position is very important to work on any layout without crash.*/
backface-visibility: hidden;
-webkit-backface-visibility: hidden;
}

/*needed for webkit browsers understand what's in front and what is behind*/
body {
perspective: 1000;
-webkit-perspective: 1000;
}

JS(jQuery)使用示例:

$('body').hover(function () {
$('.flipper').addClass('flip');
});
$('body').click(function () {
$('.flipper').removeClass('flip');
});

关于javascript - 带有固定顶部菜单的翻转菜单,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21387321/

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