gpt4 book ai didi

html - 如何绘制喜欢按钮右侧的# of likes bubble

转载 作者:太空宇宙 更新时间:2023-11-03 23:39:10 26 4
gpt4 key购买 nike

对于下面的 facebook 点赞按钮,按钮右侧有一个# of likes 气泡(?)(见下文 - 气泡上带有“3.5k”的文本)

facebook like button with the bubble on right

问题是——它是用 css 绘制的吗?如何创建?

最佳答案

fiddle 链接:http://jsfiddle.net/zEVbe/1/

是的,那个气泡可以用 CSS 以各种方式绘制。其中一种方式写在下面。

HTML:

<div class="like">Like</div>
<div class="counter">3.5k</div>

CSS:

body{
font-family:Calibri;
}
.like{
background:#3b5998;
padding:0px 10px;
border-radius:2px;
color:#fff;
cursor:pointer;
float:left;
height:25px;
line-height:25px;
}
.like:hover{
background:#444;
}
.counter{
background:#fafafa;
border:1px solid #aaa;
float:left;
padding:0px 8px;
border-radius:2px;
margin-left:8px;
height: 23px;
line-height:23px;
}
.counter:before{
display:block;
float:left;
content:' ';
width:6px;
height:6px;
background:#fafafa;
margin-left:-12px;
border-right:10px;
transform:rotate(45deg);
-webkit-transform:rotate(45deg);
margin-top:8px;
border-left:1px solid #aaa;
border-bottom:1px solid #aaa;
}

关于html - 如何绘制喜欢按钮右侧的# of likes bubble,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23333010/

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