- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我正在尝试制作一个半圆形/椭圆形的标题,该标题与其内部内容一起响应。现在它只在桌面上看起来不错,我真的不知道如何让它在移动设备上或窗口调整大小时看起来正确。
问题是缩小时圆圈的可见部分在顶部变得太细几乎消失,现在标题的内容留在形状之外,放大时(以及在移动设备/较小的屏幕上) ) 圆圈变得非常大,svg 中的图像不再填充标题形状。
感谢您的帮助。
理想情况下,标题应如下所示:
在移动设备上而不是像这样
更像是这样的:
这是它的另一个问题,我通过缩小很多来夸大它:
这是一个 fiddle :https://jsfiddle.net/150dr2bb/27/
这里是重现此代码所需的所有代码:
HTML:
<header>
<div id="headercirclecont" style="text-align:center;">
<svg id="headerwhitecircle" preserverAspectRatio="none">
<defs>
<linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" style="stop-color:#7c3495;stop-opacity:1" />
<stop offset="100%" style="stop-color:#f3366a;stop-opacity:1" />
</linearGradient>
<clipPath id="circleView">
<circle cx="50vw" cy="-20vh" r="790px"/>
</clipPath>
</defs>
<circle cx="50vw" cy="-20vh" r="800px" fill="white" />
<circle cx="50vw" cy="-20vh" r="790px" fill="url(#grad1)" />
<image id="circleflimage" width="100vw" opacity="0.1" xlink:href="https://upload.wikimedia.org/wikipedia/commons/thumb/5/52/Phinizy_swamp_nature_park_floodplain_in_hdr.jpg/1200px-Phinizy_swamp_nature_park_floodplain_in_hdr.jpg" clip-path="url(#circleView)"/>
</svg>
</div>
<div id="headercontent">
<div id="headerparent">
<div>
<h1 id="logo" class="whitetext">
Test
</h1>
</div>
<br>
<div id="headsocials">
<p class="svgsocials">a</p>
<p class="svgsocials">a</p>
<p class="svgsocials">a</p>
<p class="svgsocials">a</p>
<p class="svgsocials">a</p>
<p class="svgsocials">a</p>
</div>
</div>
</div>
</header>
CSS:
html{
margin: 0 !important;
padding: 0 !important;
height: 100%;
width: 100%;
}
body{
background: #161925;
height: 100%;
background-repeat: no-repeat;
background-attachment: fixed;
font-family: "moon2reg", "latolight", "calibri", sans-serif;
font-weight: normal;
font-size: 17px;
}
.container {
width: 100%;
max-width: 1200px;
margin: 0 auto;
height: 100%;
display: block;
}
header {
height: 700px;
max-height: 700px;
width: 100%;
position: relative;
margin: 0 auto;
display: flex;
justify-content:center;
align-items:center;
flex-wrap: wrap;
flex-direction: row;
}
#headerwhitecircle {
display: block;
margin: 0 auto;
text-align: center;
height: 100%;
max-height: 700px;
z-index: -1;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin-left:auto; margin-right:auto;
width: 100%;
}
#headercirclecont {
display: flex;
justify-content: center;
align-items: center;
}
#circleflimage {
margin: 0 auto;
text-align: center;
max-width: 100vw;
max-height: 700px;
}
#headercontent {
width: 100%;
max-width: 600px;
height: 100%;
max-height: 700px;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: 0 auto;
position: absolute;
display: flex;
flex-wrap: wrap;
flex-direction: row;
align-items:center;
}
#headerparent {
margin: 0 auto;
}
#logo {
width: 100%;
max-width: 600px;
z-index: 1;
}
#headsocials {
width: 100%;
height: 40px;
display: flex;
}
p.svgsocials {
position: relative;
display: inline-block;
width: 100%;
margin: 0 auto;
}
p.svgsocials:after {
content: "";
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
}
h1 {
color: #161925;
margin: 0;
font-size: 80px;
font-weight: 100;
font-family: moon2reg calibri;
}
p {
color: #ffffff;
font-size: 30px;
margin: 5px;
}
.whitetext {
color: #ffffff;
}
.centertext {
text-align: center;
}
#titleTxt {
height: 100%;
max-height: 60px;
}
最佳答案
我认为您可能会遇到复杂的事情,因为您尝试使用 vw
和 vh
等单位来控制 SVG 的行为,而不是使用 SVG viewBox
并利用 SVG 的内置响应功能。
当您切换到 viewBox
时,一切都会变得更加简单和容易。
在这里 fiddle :https://jsfiddle.net/150dr2bb/58/
@charset "UTF-8";
html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}button,[type="button"],[type="reset"],[type="submit"]{-webkit-appearance:button}button::-moz-focus-inner,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type="button"]:-moz-focusring,[type="reset"]:-moz-focusring,[type="submit"]:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type="checkbox"],[type="radio"]{box-sizing:border-box;padding:0}[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button{height:auto}[type="search"]{-webkit-appearance:textfield;outline-offset:-2px}[type="search"]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}
html{
margin: 0 !important;
padding: 0 !important;
height: 100%;
width: 100%;
}
body{
background: #161925;
height: 100%;
background-repeat: no-repeat;
background-attachment: fixed;
font-family: "moon2reg", "latolight", "calibri", sans-serif;
font-weight: normal;
font-size: 17px;
}
header {
width: 100%;
max-width: 1600px;
position: relative;
margin: 0 auto;
display: flex;
justify-content:center;
align-items:center;
flex-wrap: wrap;
flex-direction: row;
}
#headercirclecont {
display: absolute;
top: 0;
width: 100%;
height: 100%;
}
#headerwhitecircle {
width: 100%;
height: 100%;
min-height: 250px;
max-height: 700px;
}
#headercontent {
position: absolute;
top: 0;
height: 100%;
display: flex;
align-items: center;
}
#headerparent {
margin: 0 auto;
}
#logo {
width: 100%;
max-width: 600px;
z-index: 1;
}
#headsocials {
width: 100%;
height: 40px;
display: flex;
}
p.svgsocials {
position: relative;
display: inline-block;
width: 100%;
margin: 0 auto;
}
p.svgsocials:after {
content: "";
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
}
h1 {
color: #161925;
margin: 0;
font-size: 80px;
font-weight: 100;
font-family: moon2reg calibri;
}
p {
color: #ffffff;
font-size: 30px;
margin: 5px;
}
.whitetext {
color: #ffffff;
}
.centertext {
text-align: center;
}
#titleTxt {
height: 100%;
max-height: 60px;
}
<header>
<div id="headercirclecont" style="text-align:center;">
<svg id="headerwhitecircle" viewBox="0 0 1600 700" preserveAspectRatio="xMidYMin slice">
<defs>
<linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" style="stop-color:#7c3495;stop-opacity:1" />
<stop offset="100%" style="stop-color:#f3366a;stop-opacity:1" />
</linearGradient>
<clipPath id="circleView">
<circle cx="800" cy="-100" r="790px"/>
</clipPath>
</defs>
<circle cx="800" cy="-100" r="800px" fill="white" />
<circle cx="800" cy="-100" r="790px" fill="url(#grad1)" />
<image id="circleflimage" width="1600" height="700" preserveAspectRatio="xMidYMin slice"
opacity="0.1" xlink:href="https://upload.wikimedia.org/wikipedia/commons/thumb/5/52/Phinizy_swamp_nature_park_floodplain_in_hdr.jpg/1200px-Phinizy_swamp_nature_park_floodplain_in_hdr.jpg" clip-path="url(#circleView)"/>
</svg>
</div>
<div id="headercontent">
<div id="headerparent">
<div>
<h1 id="logo" class="whitetext">
Test
</h1>
</div>
<br>
<div id="headsocials">
<p class="svgsocials">a</p>
<p class="svgsocials">a</p>
<p class="svgsocials">a</p>
<p class="svgsocials">a</p>
<p class="svgsocials">a</p>
<p class="svgsocials">a</p>
</div>
</div>
</div>
</header>
关于html - 使用 SVG 形状创建响应式圆形标题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49831522/
关闭。这个问题不满足Stack Overflow guidelines .它目前不接受答案。 想改善这个问题吗?更新问题,使其成为 on-topic对于堆栈溢出。 7年前关闭。 Improve thi
有两个 SVG 元素( SVG1 和 SVG2 ),其中 SVG1 是一个包含各种元素的大区域,会不时添加、删除和重新定位。另一方面,SVG2 需要用作 图标化表示(小) SVG1 的版本,非常小,但
我知道我们可以使用 document.createElementNS("http://www.w3.org/2000/svg","line"); 创建一个嵌入到html页面。 但是,这种方法似乎不适用
我正在尝试使用 Flutter SVG 依赖项,我将 svg 放入 Assets 中,在 pubspec.yaml 中设置,并在我的小部件中设置,但是,使用黑色容器加载 svg 我已经尝试过更改 sv
为什么这样的演示:http://jsbin.com/ejorus/2/edit,将元素嵌套在另一个元素内? JS
很难说出这里问的是什么。这个问题是含糊的、模糊的、不完整的、过于宽泛的或修辞性的,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开它,visit the help center 。 已关
我正在尝试在 SVG 中做一些非常简单的事情: 将整个视口(viewport)分成两个矩形 每个矩形的宽度应为视口(viewport)宽度的 50% 每个矩形的高度应为视口(viewport)高度的
我试图将 play svg 居中放置在 SVG 圆圈的中间,但似乎不知道该怎么做。 垂直和水平。 https://jsfiddle.net/c0qshm0t/17/ 最
是否可以使用一个 SVG 形状作为另一个形状的填充? 最佳答案 您想使用 SVG Pattern .见 this example : 注意
我在 SVG 中有一个非常简单的路径。 (预览:https://i.imgur.com/nVnxcRg.png) 我想要
我可以通过以下方式创建多边形: #!/usr/bin/env python from shapely.geometry import Polygon area = Polygon(((52, 13),
我使用 require 的 SVG 没有显示。 在我的终端中,svg Assets 被发出并且路径在我的 html 中正确设置。 但是,SVG 不会显示,而其他格式(如 jpg 或 png)可以显示
我在 SVG 混合模式中遇到了问题。我在 SVG 中有四个路径,我想用公式组合它们:(1*2) + (3*4),即路径 1 和路径 2 应该使用乘法模式混合,类似地路径 3 和路径 4 应该使用混合相
我无法超过 2 个级别。 (在 Iceweasel 和 Chromium 上尝试过。) 作为测试,我尝试了 this earlier reply 中提供的代码的变体。 .这个由 3 个单独的文件组成,
请引用以下组中的clip-path 组 ID -> “container_svg_symbolGroup1_0(即圆圈符号)在我删除图表中可见的剪辑路径时不可见。 问题是什么?为什么
使用联合 js 在 svg 中创建了一个文本区域。但是,我无法在文本区域中输入任何文本。如何使文本区域可编辑? 代码: var graph = new joint.dia.Graph;
您可以不受限制地停止和重复动画,但如果您重新启动一个不确定的动画,它将失去其累积值并从初始值开始。 也许我应该用一个例子来澄清;拿这个动画: 如果我停止此动画,并开始影响同一对象旋转的不同动画(
如果我在浏览器中显示常规 SVG(作为独立文件或嵌入在 HTML 中),在拥有大量单独的路径元素和一个巨大的路径元素之间在效率上是否有任何理论上的差异? 我正在考虑将某种动画从一张图片变成一张完全不同
logo的turtlegraphics的svg路径中是否有等价物? 而不是硬编码的 x 和 y 坐标,这也迫使我在移动更相对的“增量”方法时调整控制点。 我的解决方案应该适用于 FOCS(Firefo
目前正在使用 SVG 元素与一堆 元素将使它具有一种逐渐变细的边缘。我尝试了很多不同的 CSS 样式来解决这个问题,但没有任何效果。这是一个带有针迹的圆圈的代码:
我是一名优秀的程序员,十分优秀!