Who-6ren">
gpt4 book ai didi

jquery - 使导航菜单响应

转载 作者:行者123 更新时间:2023-11-28 07:14:37 26 4
gpt4 key购买 nike

当从不同的屏幕尺寸查看我的网站时,菜单会超出屏幕范围。如何让它响应?这是 site 的链接我已经添加了 html 和 css 供您引用。谢谢。

html

<div class="wrapper">
<p class="menu">
<a href="#" class="animBtn themeB hastip" title="<h2>Who We Are</h2>">Who We Are</a>

<a href="#" class="animBtn themeB hastip" title="<h2>What We Do</h2>"Loree Do</a>

<a href="/forum" class="animBtn themeB hastip" title="<h2>Step Into Our Community</h2>">Forum</a>

<a href="#" class="animBtn themeB">Contact US</a>
</p>
</div>

CSS

.menu {
position: absolute;
top: 50%;
height: 300px;
margin-left: 950px;
margin-top: 10px;
}

a.animBtn:link, a.animBtn:visited {
position: relative;
display: block;
width: 220px;
margin: 10px auto 0;
border-radius: 10px;
font-size: 21px !important;
padding: 14px 15px;
border: 2px solid #608B82;
background: rgba(255, 255, 255, 0.15);
color: rgba(159,192,181,1);
text-align: center;
text-decoration: none;
text-transform: note;
overflow: hidden;
letter-spacing: .08em;
text-shadow: 0 0 1px rgba(0, 0, 0, 0.2), 0 1px 0 rgba(0, 0, 0, 0.2);
-webkit-transition: all .3s ease;
-moz-transition: all .3s ease;
-o-transition: all .3s ease;
transition: all .3s ease;
}
a.animBtn:link:after, a.animBtn:visited:after {
content: "";
position: absolute;
background: none repeat scroll 0 0 rgba(255, 255, 255, 0.1);
height: 0%;
left: 50%;
top: 50%;
width: 100%;
z-index: -1;
-webkit-transition: all .3s ease 0s;
-moz-transition: all .3s ease 0s;
-o-transition: all .3s ease 0s;
transition: all .3s ease 0s;
}
a.animBtn:link:hover, a.animBtn:visited:hover {
color: rgba(159,192,181,1);
text-shadow: none;
}
a.animBtn:link:hover:after, a.animBtn:visited:hover:after {
height: 420%;
}

a.animBtn.themeB:after {
-moz-transform: translateX(-50%) translateY(-50%) rotate(45deg);
-ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
-webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

最佳答案

好的。开始了。以下代码仅适用于移动设备和比移动设备大的屏幕。但是对于适用于所有标准设备的流体布局,您可能需要为所有标准设备应用媒体屏幕。

这是HTML

<p class="menu">
<a href="#" class="animBtn themeB hastip" title="">Who We Are</a>

<a href="#" class="animBtn themeB hastip" title="">What We Do</a>

<a href="/forum" class="animBtn themeB hastip" title="">Forum</a>

<a href="#" class="animBtn themeB">Contact US</a>
</p>

CSS

@media screen and (max-width:320px){ /*For Mobile*/
.menu {
position: absolute;
top: 50%;
height: 300px;
margin:auto;
margin-top: 10px;
}

@media screen and (min-width:321px){ /* for screen larger than mobile*/
.menu {
position: absolute;
top: 50%;
height: 300px;
margin-left: 70%;
margin-top: 10px;
}
}

根据需要自定义每个屏幕的位置。这是 DEMO 如果有任何问题,请回来。希望对您有所帮助。

关于jquery - 使导航菜单响应,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32425046/

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