我正在构建一个Bootstrap站点并且有一个css(带有显示便利贴的功能)来自我想要实现的另一个项目。
当在index.html中加载css时,Bootstrap中的菜单会从sticky-css中获得阴影效果 - 如何将css编码为仅显示?
@import url(http://fonts.googleapis.com/css?family=Reenie+Beanie);
@import url(http://fonts.googleapis.com/css?family=Patrick+Hand+SC);
.sticky.div:sn {
margin: 0 auto;
}
.sticky h1,.sticky p{
font-family:"Reenie Beanie","Ruthie";
line-height: 100%;
font-weight:normal;
}
.sticky ul,.sticky li{
list-style:none;
}
.sticky ul{
overflow:hidden;
padding:2em;
}
.sticky ul li{
margin:1em;
float:left;
}
.sticky ul li a{
text-decoration:none;
color:#000;
background:#ffc;
display:block;
height:12em;
width:12em;
padding:1em;
-moz-box-shadow:5px 5px 7px rgba(33,33,33,1);
-webkit-box-shadow: 5px 5px 7px rgba(33,33,33,.7);
box-shadow: 5px 5px 7px rgba(33,33,33,.7);
-moz-transition:-moz-transform .15s linear;
-o-transition:-o-transform .15s linear;
-webkit-transition:-webkit-transform .15s linear;
-webkit-transform: rotate(-6deg);
-o-transform: rotate(-6deg);
-moz-transform:rotate(-6deg);
}
.sticky ul li h1{
font-family:"Reenie Beanie","Ruthie";
line-height: 90%;
font-weight:bold;
padding-bottom:10px;
}
.sticky ul li p{
font-size:90%;
}
.sticky ul li:nth-child(even) a{
-o-transform:rotate(4deg);
-webkit-transform:rotate(4deg);
-moz-transform:rotate(4deg);
position:relative;
top:5px;
background:#cfc;
}
.sticky ul li:nth-child(3n) a{
-o-transform:rotate(-3deg);
-webkit-transform:rotate(-3deg);
-moz-transform:rotate(-3deg);
position:relative;
top:-5px;
background:#ccf;
}
.sticky ul li:nth-child(5n) a{
-o-transform:rotate(5deg);
-webkit-transform:rotate(5deg);
-moz-transform:rotate(5deg);
position:relative;
top:-10px;
}
.sticky ul li a:hover,ul li a:focus{
box-shadow:10px 10px 7px rgba(0,0,0,.7);
-moz-box-shadow:10px 10px 7px rgba(0,0,0,.7);
-webkit-box-shadow: 10px 10px 7px rgba(0,0,0,.7);
-webkit-transform: scale(1.25);
-moz-transform: scale(1.25);
-o-transform: scale(1.25);
position:relative;
z-index:5;
}
.sticky ol{text-align:center;}
.sticky ol li{display:inline;padding-right:1em;}
.sticky ol li a{color:#fff;}
答案 0 :(得分:2)
您是否使用第三方插件进行引导。我知道有几个使用.sticky
类,所以肯定会有冲突。
您可以将样式重命名为.sticky-note
吗?
答案 1 :(得分:0)
只需将自定义类添加到无序列表中,如下所示:
<ul class="sticky-thing">
<li><!--your sticky list items --></li>
<li><!--your sticky list items --></li>
<li><!--your sticky list items --></li>
<li><!--your sticky list items --></li>
</ul>
然后将.sticky-things
添加到自定义CSS中的所有ul
标记中,如下所示:
ul.sticky-thing li{
margin:1em;
float:left;
}
ul.sticky-thing li a{
text-decoration:none;
color:#000;
background:#ffc;
display:block;
height:14em;
width:14em;
padding:1em;
-moz-box-shadow:5px 5px 7px rgba(33,33,33,1);
-webkit-box-shadow: 5px 5px 7px rgba(33,33,33,.7);
box-shadow: 5px 5px 7px rgba(33,33,33,.7);
-moz-transition:-moz-transform .15s linear;
-o-transition:-o-transform .15s linear;
-webkit-transition:-webkit-transform .15s linear;
-webkit-transform: rotate(-6deg);
-o-transform: rotate(-6deg);
-moz-transform:rotate(-6deg);
}
/* other ul properties */
你的粘性css将独立于bootstrap css。
以下是jsfiddle的修改版本,其中添加了虚拟引导导航栏(菜单)以及上述代码:http://jsfiddle.net/AndrewL32/e15hfqg1/2/