我一直在寻找关于如何在圆圈内放置一段文字的体面而快速的解决方案。我发现有两种解决方案。
将与文本左侧文本相同高度的多个 div 浮动,并通过更改div 宽度来调整剩余空间对于文本。
将生成器用于同一事物,http://www.csstextwrap.com/index.php。
我不是在寻找这个,但也许有人可能会需要它,我认为将它作为一个链接> http://csswarp.eleqtriq.com/它是一个基于网络的生成器,可以帮助您将文本环绕在圆圈中。
是否有更简单的解决方案将文本段落放在圆圈内而无需添加浮动div和其他标记。拍摄包含该文本的图像不是解决方案。在最好的情况下,该解决方案将具有干净的HTML标记,并且CSS中只有很少的调整。
答案 0 :(得分:23)
使用简单的border-radius: 50%
不会影响内容框的形状,目前这些内容框是矩形的。例如,请参阅Kyle Sevenoaks的demo。
正在开发一个解决此问题的CSS3模块:
http://dev.w3.org/csswg/css-shapes
但是,此规范仍处于草稿模式,目前尚未支持,可能需要一年或两年。
简短的回答是否定的,但希望这些评论能提供一些见解。
答案 1 :(得分:2)
嗨我认为没有js我认为这是不可能的所以使用js和css3
.badge {
position: relative;
width: 400px;
border-radius: 50%;
-webkit-transform: rotate(-50deg);
-moz-transform: rotate(-50deg);
-ms-transform: rotate(-50deg);
-o-transform: rotate(-50deg);
transform: rotate(-50deg);
}
h1 span {
font: 26px Monaco, MonoSpace;
height: 200px;
position: absolute;
width: 20px;
left: 0;
top: 0;
-webkit-transform-origin: bottom center;
-moz-transform-origin: bottom center;
-ms-transform-origin: bottom center;
-o-transform-origin: bottom center;
transform-origin: bottom center;
}
.char1 {
-webkit-transform: rotate(6deg);
-moz-transform: rotate(6deg);
-ms-transform: rotate(6deg);
-o-transform: rotate(6deg);
transform: rotate(6deg);
}
.char2 {
-webkit-transform: rotate(12deg);
-moz-transform: rotate(12deg);
-ms-transform: rotate(12deg);
-o-transform: rotate(12deg);
transform: rotate(12deg);
}
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script src="http://css-tricks.com/examples/BlurredText/js/jquery.lettering.js"></script>
<script>
$(function() {
$("h1").lettering();
});
</script>
</head>
<body>
<div id="page-wrap">
<div class="badge">
<h1>Established 2012</h1>
</div>
</div>
</body>
</html>
答案 2 :(得分:1)
<!DOCTYPE HTML>
<html>
<head>
<style>
body {
margin: 0px;
padding: 0px;
}
</style>
</head>
<body>
<canvas id="myCanvas" width="578" height="250"></canvas>
<script>
function drawTextAlongArc(context, str, centerX, centerY, radius, angle) {
var len = str.length, s;
context.save();
context.translate(centerX, centerY);
context.rotate(-1 * angle / 2);
context.rotate(-1 * (angle / len) / 2);
for(var n = 0; n < len; n++) {
context.rotate(angle / len);
context.save();
context.translate(0, -1 * radius);
s = str[n];
context.fillText(s, 0, 0);
context.restore();
}
context.restore();
}
var canvas = document.getElementById('myCanvas'),
context = canvas.getContext('2d'),
centerX = canvas.width / 2,
centerY = canvas.height - 30,
angle = Math.PI * 0.8,
radius = 150;
context.font = '30pt Calibri';
context.textAlign = 'center';
context.fillStyle = 'blue';
context.strokeStyle = 'blue';
context.lineWidth = 4;
drawTextAlongArc(context, 'Text along arc path', centerX, centerY, radius, angle);
// draw circle underneath text
context.arc(centerX, centerY, radius - 10, 0, 2 * Math.PI, false);
context.stroke();
</script>
</body>
</html>
CLICK HERE用于另一种解决方案(jsfiddle)。
答案 3 :(得分:1)
原件(?)......封面!
function writeInCircle(phrase, cx, cy, fontSize) {
var num = phrase.length
var r = num * fontSize / 6
var d = $("<div>").addClass("writeInCircle").appendTo("body")
$(d).css({position:"absolute",
width: (2*r) + "px",
height: (2*r) + "px",
left: (cx-r) + "px",
top: (cy-r) + "px"})
for (var i=0; i < num; i++) {
var s = $("<span>").html( phrase.charAt(i)).appendTo(d)
a = i/num *2*Math.PI
var x = cx + r*Math.cos(a)
var y = cy + r*Math.sin(a)
$(s).css({"position":"absolute",
left: x + "px", top: y + "px",
"fontSize": fontSize, "transform":"rotate(" + a + "rad)" })
console.log(z.charAt(i) + " " + x + "," + y)
}
}
请参阅http://jsfiddle.net/alemarch/42o8hqb7/ http://jsfiddle.net/alemarch/42o8hqb7/1/ http://jsfiddle.net/alemarch/42o8hqb7/2/ http://jsfiddle.net/alemarch/42o8hqb7/3/
答案 4 :(得分:0)
我找到的最适用的答案可以在这里找到:
使用此方法更容易,然后隐藏溢出/使用文本,而不是溢出。
Cut out shape (triangle) from div and show background behind