123456789101112131415161718192021222324252627282930313233343536 |
- <svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 500 150" style="boder:1px solid red">
- <defs>
- <filter id="f1" x="0" y="0" width="100%" height="100%">
- <feOffset result="offOut" in="SourceGraphic" dx="2" dy="2" />
- <feGaussianBlur result="blurOut" in="offOut" stdDeviation="5" />
- <feBlend in="SourceGraphic" in2="blurOut" mode="normal" />
- </filter>
- <filter id="f2" x="0" y="0" width="100%" height="100%">
- <feOffset result="offOut" in="SourceAlpha" dx="1" dy="1" />
- <feGaussianBlur result="blurOut" in="offOut" stdDeviation="5" />
- <feBlend in="SourceGraphic" in2="blurOut" mode="normal" />
- </filter>
- <text id="t1" x="-2" y="65" font-size="75" font-family="STXingKai" fill="rgb(51, 154, 57)" font-weight="600"
- dominant-baseline="middle" text-anchor="start">中科轼峰</text>
- <text id="t2" x="10" y="125" font-size="36" font-family="Times New Roman" fill="rgb(14, 111, 177)"
- font-style="italic" font-weight="500" dominant-baseline="middle" text-anchor="start">Zhong Ke Shi Feng</text>
- </defs>
- <symbol id="logo" viewBox="0 0 200 150">
- <symbol id="l" viewBox="0 0 200 150">
- <path d="M40 0 h-20 a20 20 0 0 0 -20 20 v110 a20 20 0 0 0 20 20 h136
- a3 4 1 0 0 2.25 -5 l-6.75 -15 l-18 -40 q-5 -10 0 -15 l30 -35 h-30 l-30 35 q-5 5 0 15
- l15.25 35 a3 4 1 0 1 -2.25 5 h-92 a5 5 0 0 1 -5 -5 v-105 q2 -18 18 -20" fill="currentColor" />
- </symbol>
- <symbol id="l1" viewBox="0 0 200 150">
- <use href="#l" />
- </symbol>
- <symbol id="l2" viewBox="0 0 200 150">
- <use href="#l" style="transform: translate(100%,100%) rotate(180deg);" />
- </symbol>
- <use href="#l1" style="color: rgb(51, 154, 57);" />
- <use href="#l2" style="color: rgb(14, 111, 177);" />
- </symbol>
- <use href="#logo" width="200" height="150" />
- <use href="#t1" x="210" y="0" />
- <use href="#t2" x="210" y="0" />
- </svg>
|