在所有开发人员和网站设计人员中,我想用twitter引导程序创建一个单面循环效果,类似于this picture。左侧有一条圆形曲线,右侧有一条长方形直线,但是矩形对它的左侧有影响,你可以在图片中看到,我怎样才能创建这样的东西? 感谢。
答案 0 :(得分:0)
尝试使用圆形图像。
的 HTML:强> 的
<div class="circular"></div>
的 CSS:强> 的
.circular {
width: 300px;
height: 300px;
border-radius: 150px;
-webkit-border-radius: 150px;
-moz-border-radius: 150px;
background: url(http://link-to-your/image.jpg) no-repeat;
}
或强>
的 HTML:强> 的
<div class="circular"><img src="http://link-to-your/image.jpg" alt="" /></div>
的 CSS:强> 的
.circular {
width: 300px;
height: 300px;
border-radius: 150px;
-webkit-border-radius: 150px;
-moz-border-radius: 150px;
background: url(http://link-to-your/image.jpg) no-repeat;
}
.circular img {
opacity: 0;
filter: alpha(opacity=0);
}
<强> Demo 强>
答案 1 :(得分:0)
喜欢这个
<强> demo 强>
<强> CSS 强>
.circle {
width: 300px;
height: 300px;
border-radius: 150px;
-webkit-border-radius: 150px;
-moz-border-radius: 150px;
background-color:blue;
}
更喜欢links
答案 2 :(得分:0)
<强> CSS 强>
body {
background-color: #555;
}
#outer {
margin: 100px auto;
background-color: black;
border-radius: 10px;
width: 600px;
height: 200px;
text-align: center;
color: white;
font-size: 25px;
line-height: 200px;
}
#inner {
width: 200px; height: 200px;
position: relative;
background: url(http://i.imgur.com/fqct5Us.gif) center;
border-radius: 1000px;
overflow: hidden;
border: 10px solid black;
float: left;
-webkit-transform: scale(1.4);
-moz-transform: scale(1.4);
-ms-transform: scale(1.4);
-o-transform: scale(1.4);
transform: scale(1.4);
}
#inner:before {
content: '';
position: absolute;
height: 200px; width: 50px;
left: 30px; bottom: -110px;
display: inline-block;
background-color: black;
-webkit-transform: rotate(-45deg);
-moz-transform: rotate(-45deg);
-ms-transform: rotate(-45deg);
-o-transform: rotate(-45deg);
transform: rotate(-45deg);
}
<强> HTML 强>
<div id="outer">
I am lorem. ← Huh?
<div id="inner">
</div>
</div>