我想在另一个网站的 WordPress 页面中嵌入一个网站。
iframed 网站是asp 中的联系表单处理页面,它没有响应。
我可以将它包装在一个响应式的 div 标签中,或者我可以让 iFrame 响应吗?
谢谢。
我正试图让svg成长,作为一个基本的条形图,从零增长到27.5的高度,例如我希望它从下到上的动画
我尝试了以下代码,但它使矩形从上到下,而不是从下到上(0高度 - > 27.5高度).
<?xml version="1.0" encoding="utf-8"?>
<svg
version="1.1"
id="MAIN"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
x="0px"
y="0px"
viewBox="0 0 1190.6 841.9"
enable-background="new 0 0 1190.6 841.9"
xml:space="preserve">
<rect
id="barchart1"
x="148.8"
y="190"
fill="#921930"
width="39.8"
height="27.5">
<animate
attributeName="height"
from="0"
to="27.5"
dur="3s"
fill="freeze"/>
</rect>
</svg>
Run Code Online (Sandbox Code Playgroud)