|
|

楼主 |
发表于 2025-7-30 18:24
|
显示全部楼层
参考代码
- <style>
- #ma {
- margin: 20px auto;
- width: 400px;
- height: 300px;
- border: 1px solid gray;
- position: relative;
- }
- .title-text {
- position: absolute;
- left: calc(50% - 35px);
- top: calc(50% + 70px);
- width: 70px;
- height: 70px;
- font: bold 60px / 70px sans-serif;
- color: tan;
- text-align: center;
- text-shadow: 0px 0px 1px red;
- transform: rotate(var(--a)) translate(150px) rotate(calc(-1 * var(--a)));
- }
- </style>
- <div id="ma"></div>
- <script>
- const txtAr = '萬紫千紅總是春'.split('');
- txtAr.forEach( (t,k) => {
- const s = document.createElement('span');
- s.textContent = t;
- s.classList.add('title-text');
- s.style.cssText += `--a: ${180 / (txtAr.length - 1) * k + 180}deg`;
- ma.appendChild(s);
- });
- </script>
复制代码
|
评分
-
| 参与人数 2 | 威望 +80 |
金钱 +160 |
经验 +80 |
收起
理由
|
花飞飞
| + 30 |
+ 60 |
+ 30 |
很给力! |
红影
| + 50 |
+ 100 |
+ 50 |
赞一个! |
查看全部评分
|