WikiJump include 未展开: 跨站引用未启用(:scp-wiki:component:pride-logos-base)
THE PRIDE NEVER ENDS
在Sigma-10版式上使用:
Sigma-10是目前基金会英语wiki的默认网站版式,是Sigma-9的升级版。这里“代码”指的是对各种骄傲旗的一个简称,可以在下文的表格里找到。例如:[[include :scp-wiki:component:pride-logos s10=-]
|code=输入代码
]]
[[include :scp-wiki:component:pride-logos s10=-]
|code=trans
]]
在Sigma-9版式上使用:
Sigma-9 是之前网站的默认版式。有一些基金会语言分部、友情网站以及沙盒站现在可能还在使用Sigma-9。[[include :scp-wiki:component:pride-logos s9=-]
|code=输入代码
]]
在黑色标记笔版式上使用:
[[include :scp-wiki:component:pride-logos bhl=-]
|code=输入代码
]]
在基岩系版式上使用:(测试版)
基岩系版式包括著名的玄武岩,以及一些其它美学版式。你需要把这几行代码放在基岩版式的[[include :scp-wiki:component:pride-logos bedrock=-]
|code=输入代码
]]
include代码后面。+ 拼合不同logo,使用自定义logo,etc.
🌈 拼合两个logo
使用code2参数可以拼合/融合两个不同的logo,一半在左边,一半在右边:
[[include :scp-wiki:component:pride-logos s10=-]
|code=左半边的代码
|code2=右半边的代码
]]
例如:
[[include :scp-wiki:component:pride-logos s10=-]
|code= nonbinary
|code2= pan
]]
这个代码会把非二元旗帜和泛性恋旗帜拼合在一起作为一个完整logo,可能对希望同时展示两个身份的人会比较有用。
WikiJump include 未展开: 跨站引用未启用(:scp-wiki:component:image-block)
如果你感觉以其它角度拼合左右两半更好看,可以加一个angle参数将拼合方向改为非垂直方向:
[[include :scp-wiki:component:pride-logos s10=-]
|code=第一个logo的代码
|code2=第二个logo的代码
|angle=拼合方向角,0-360
]]
0°是水平拼合。默认方向是垂直拼合(90°)。倾斜角从左侧(也就是x轴负半轴)开始,顺时针增加。
例如这样会把拼合方向改成60°:
[[include :scp-wiki:component:pride-logos s10=-]
|code=nonbinary
|code2=pan
|angle=60
]]
WikiJump include 未展开: 跨站引用未启用(:scp-wiki:component:image-block)
🌈 拼合三个logo(测试中)
如果你想把三个logo拼在一起,其会显示成一个平行的拼贴样式。
你依旧可以使用angle参数。可以用code3来指定第三个logo。
例如:
[[include :scp-wiki:component:pride-logos s10=-]
|code=trans-alt3
|code2=nonbinary-alt3
|code3=genderfluid-alt3
|angle=70
]]
[[div style="display: flex;
align-items: center;
justify-content: center;"]]
WikiJump include 未展开: 跨站引用未启用(:scp-wiki:component:image-block)
WikiJump include 未展开: 跨站引用未启用(:scp-wiki:component:image-block)
[[/div]]
此功能在基岩系版式上不可用。基岩系版式只支持拼合两个logo。
🌈 自行上传图片
如果你不满足于预制的这些logo,可以通过这个功能制作你自己的骄傲!请使用custom参数插入一个图片链接:
[[include :scp-wiki:component:pride-logos s10=-]
|custom=url(你的自定义logo的图片链接)
]]
代码里必须包括这个 url() 括号。
你仍然可以使用拼合功能(包括自定义角度功能)。你也可以把自定义的logo和组件预设的logo放在一起使用,比如:
[[include :scp-wiki:component:pride-logos s10=-]
|code=abro
|##dodgerblue|custom2=##url(@@https://example.com/my-image.png@@)
]]
或者三个一起(你仍然可以把code和custom放在一起使用):
[[include :scp-wiki:component:pride-logos s10=-]
|custom=url(第一个自定义logo)
|custom2=url(第二个自定义logo)
|custom3=url(第三个自定义logo)
]]
最好使用长宽相等的图片,否则图片会被缩放拉伸。
⚠ 由于Sigma和黑标版式存在的限制,在拼合多个logo时,空心的logo(内部部分是透明或者半透明的,比如默认的基金会网站logo)显示会出问题。最下面一个logo能透过上面logo的透明部分看到。基岩系版式则没有这个问题。
🌈 其它进阶效果?
问:我可以拼合3个以上的logo吗?
目前不能。如果你想这么做,我建议先在Photoshop或者其它软件里把logo做成一张图,然后用custom方法自定义。
问:我可以给logo加动画吗?
目前CSS的@keyframe帧动画不能直接应用到 mask-image 属性上。如果想把logo做成动态的可能会非常麻烦。
问:这个页面的渐隐logo是怎么做的?我也可以用渐变吗?
可以。
此组件利用CSS蒙版来拼合logo。CSS蒙版可以将两张图片混合在一起,让其中一张图仅在蒙版范围内显示。
第二个logo会被切掉一半,然后放在第一个logo的上面。默认是在50%位置切开:
mask-image: linear-gradient(to right, transparent 50%, black 50%);这是一个CSS渐变。logo图片会逐像素对应蒙版图片的透明度。你可以更改色标的位置,并添加一个mask参数来覆盖现有的mask-image:
[[include :scp-wiki:component:pride-logos s10=-]
|mask=渐变,矢量图,或者其它东西
]]
作为参考,本页的渐变logo(彩虹渐显)的写法是:
mask-image: linear-gradient(60deg, transparent 30%, black 60%);只需要填入linear-gradient(60deg, transparent 30%, black 60%)这一部分。使用自定义蒙版之后,前文所述的angle参数将会被无效化。
整个代码应该写成:
[[include :scp-wiki:component:pride-logos s10=-]
|code=default
|code2=pride
|mask=linear-gradient(60deg, transparent 30%, black 60%)
]]
WikiJump include 未展开: 跨站引用未启用(:scp-wiki:component:image-block)
如果使用的是拼合3个logo的选项,你可以给第三个logo应用另外一个蒙版mask2。然而,显示效果可能会比较奇怪。
🌈 彩虹骄傲版头
如果你只想使用这个动态彩虹版头,请使用下面这行代码:这个可以和logo一起使用。例如,如果你想同时用logo和动态版头:[[include :scp-wiki:component:pride-logos header=-]]]
请注意,使用这个动态版头会为你的页面引入默认Sigma主题的版头背景,可能会覆盖掉其它版式自定义的版头。[[include :scp-wiki:component:pride-logos s10=-]
|header= -]
|code= phil
|code2= intersex
]]
ℹ️ 请注意,大部分情况下,为了让logo正常显示,你需要把这个组件的代码放在你用的所有版式的后面。
虽然这个顺序是有一定自由度的,但仍然非常建议这么用,因为曾经有人因为这个问题遇到过bug。
+ 举例
✅ 应该这样写:
[[include :scp-wiki:theme:black-highlighter-theme]]
[[include :scp-wiki:theme:deus-ex-machina]]
[[include :scp-wiki:component:pride-logos bhl=-]
|code=pride-alt3
]]
<你文章的内容>
❌ 不要这样放:
[[include :scp-wiki:component:pride-logos bhl=-]
|code=pride-alt3
]]
[[include :scp-wiki:theme:black-highlighter-theme]]
[[include :scp-wiki:theme:deus-ex-machina]]
<你文章的内容>
这个问题的主要原因是CSS的前后覆盖规则。
如果你确定你写得没有问题,但是logo依然不显示,或者显示有问题,检查一下你是否在代码里打错字了,包括少打了方括号 [[ 和 ]] ,连字符 - ,竖杠 | ,或者等号 = 。
如果依然有问题,带着你页面的链接来私信我。
🌈 目前的所有logo:
基础系列
| 透明 | |||
|---|---|---|---|
![]() | ![]() | ![]() | ![]() |
| black | white | mix | mix-alt |
| 实心 | |
|---|---|
![]() | ![]() |
| default | inverse |
通用骄傲Logo
| 六色彩虹骄傲Rainbow Pride | |||
|---|---|---|---|
![]() | ![]() | ![]() | ![]() |
| pride | pride-alt | pride-alt2 | pride-alt3 |
| 费城骄傲Philadelphia Pride | |||
|---|---|---|---|
![]() | ![]() | ![]() | ![]() |
| phil | phil-alt | phil-alt2 | phil-alt3 |
| 进步骄傲Progress Pride | |||
|---|---|---|---|
![]() | ![]() | ![]() | ![]() |
| progress | progress-alt | progress-alt2 | progress-alt3 |
| 性少数群体MOGAI | |
|---|---|
![]() | |
| mogai | |
| MOGAI 骄傲新设计 | |||
|---|---|---|---|
![]() | ![]() | ![]() | ![]() |
| mogai-re | mogai-re-alt | mogai-re-alt2 | mogai-re-alt3 |
所有骄傲Logo
(按照英文首字母排序)
| 流动性恋Abrosexual / Abroromantic | |||
|---|---|---|---|
![]() | ![]() | ![]() | ![]() |
| abro | abro-alt | abro-alt2 | abro-alt3 |
| 无性别Agender | |||
|---|---|---|---|
![]() | ![]() | ![]() | ![]() |
| agender | agender-alt | agender-alt2 | agender-alt3 |
| 无浪漫吸引Aromantic | |||
|---|---|---|---|
![]() | ![]() | ![]() | ![]() |
| aromantic | aromantic-alt | aromantic-alt2 | aromantic-alt3 |
| 无浪漫无性吸引Aroace骄傲 | |||
|---|---|---|---|
![]() | ![]() | ![]() | ![]() |
| aroace | aroace-alt | aroace-alt2 | aroace-alt3 |
| 无性吸引Asexual | |||
|---|---|---|---|
![]() | ![]() | ![]() | ![]() |
| asexual | asexual-alt | asexual-alt2 | asexual-alt3 |
| 自性性吸引Autosexual | |||
|---|---|---|---|
![]() | ![]() | ![]() | ![]() |
| autosexual | autosexual-alt | autosexual-alt2 | autosexual-alt3 |
| 自性恋谱系Auto-spectrum | |
|---|---|
![]() | ![]() |
| auto | auto-alt |
| 双性恋Bisexual / Biromantic | |||
|---|---|---|---|
![]() | ![]() | ![]() | ![]() |
| bi | bi-alt | bi-alt2 | bi-alt3 |
| 双性别Bigender | |||
|---|---|---|---|
![]() | ![]() | ![]() | ![]() |
| bigender | bigender-alt | bigender-alt2 | bigender-alt3 |
| 部分男性Demiboy | |||
|---|---|---|---|
![]() | ![]() | ![]() | ![]() |
| demiboy | demiboy-alt | demiboy-alt2 | demiboy-alt3 |
| 部分女性Demigirl | |||
|---|---|---|---|
![]() | ![]() | ![]() | ![]() |
| demigirl | demigirl-alt | demigirl-alt2 | demigirl-alt3 |
| 部分浪漫吸引Demiromantic | |||
|---|---|---|---|
![]() | ![]() | ![]() | ![]() |
| demiromantic | demiromantic-alt | demiromantic-alt2 | demiromantic-alt3 |
| 部分性吸引Demisexual | |||
|---|---|---|---|
![]() | ![]() | ![]() | ![]() |
| demisexual | demisexual-alt | demisexual-alt2 | demisexual-alt3 |
| 非二元同性恋Enbian | |||
|---|---|---|---|
![]() | ![]() | ![]() | ![]() |
| enbian | enbian-alt | enbian-alt2 | enbian-alt3 |
| 男同性恋Gay Men骄傲 | |||
|---|---|---|---|
![]() | ![]() | ![]() | ![]() |
| gay | gay-alt | gay-alt2 | gay-alt3 |
| 流动性别Genderfluid | |||
|---|---|---|---|
![]() | ![]() | ![]() | ![]() |
| genderfluid | genderfluid-alt | genderfluid-alt2 | genderfluid-alt3 |
| 波动性别Genderflux | |||
|---|---|---|---|
![]() | ![]() | ![]() | ![]() |
| genderflux | genderflux-alt | genderflux-alt2 | genderflux-alt3 |
| 性别酷儿Genderqueer | |||
|---|---|---|---|
![]() | ![]() | ![]() | ![]() |
| genderqueer | genderqueer-alt | genderqueer-alt2 | genderqueer-alt3 |
| 灰色无浪漫无性吸引Grayaroace | |||
|---|---|---|---|
![]() | ![]() | ![]() | ![]() |
| grayaroace | grayaroace-alt | grayaroace-alt2 | grayaroace-alt3 |
| 灰色自性吸引Grayautosexual | |
|---|---|
![]() | ![]() |
| grayauto | grayauto-alt |
| 灰色无浪漫吸引Grayromantic | |||
|---|---|---|---|
![]() | ![]() | ![]() | ![]() |
| grayromantic | grayromantic-alt | grayromantic-alt2 | grayromantic-alt3 |
| 灰色无性吸引Graysexual | |||
|---|---|---|---|
![]() | ![]() | ![]() | ![]() |
| graysexual | graysexual-alt | graysexual-alt2 | graysexual-alt3 |
| 间性者Intersex | |||
|---|---|---|---|
![]() | ![]() | ![]() | ![]() |
| intersex | intersex-alt | intersex-alt2 | intersex-alt3 |
| 间性者骄傲新设计 | |
|---|---|
![]() | ![]() |
| intersex-re | intersex-re-alt |
| 女同性恋Lesbian骄傲 | |||
|---|---|---|---|
![]() | ![]() | ![]() | ![]() |
| lesbian | lesbian-alt | lesbian-alt2 | lesbian-alt3 |
| 中性Neutrois | |||
|---|---|---|---|
![]() | ![]() | ![]() | ![]() |
| neutrois | neutrois-alt | neutrois-alt2 | neutrois-alt3 |
| 非二元性别Nonbinary | |||
|---|---|---|---|
![]() | ![]() | ![]() | ![]() |
| nonbinary | nonbinary-alt | nonbinary-alt2 | nonbinary-alt3 |
| [[span class="ruby"]]全性恋Omnisexual / Omniromantic | |||
|---|---|---|---|
![]() | ![]() | ![]() | ![]() |
| omni | omni-alt | omni-alt2 | omni-alt3 |
| 泛性恋Pansexual / Panromantic | |||
|---|---|---|---|
![]() | ![]() | ![]() | ![]() |
| pan | pan-alt | pan-alt2 | pan-alt3 |
| 泛性别Pangender | |||
|---|---|---|---|
![]() | ![]() | ![]() | ![]() |
| pangender | pangender-alt | pangender-alt2 | pangender-alt3 |
| 多性恋Polysexual / Polyromantic | |||
|---|---|---|---|
![]() | ![]() | ![]() | ![]() |
| poly | poly-alt | poly-alt2 | poly-alt3 |
| 酷儿柏拉图Queerplatonic | |||
|---|---|---|---|
![]() | ![]() | ![]() | ![]() |
| queerplatonic | queerplatonic-alt | queerplatonic-alt2 | queerplatonic-alt3 |
| 跨性别Transgender | |||
|---|---|---|---|
![]() | ![]() | ![]() | ![]() |
| trans | trans-alt | trans-alt2 | trans-alt3 |
| 女性倾向跨性别Transfeminine | |||
|---|---|---|---|
![]() | ![]() | ![]() | ![]() |
| transfem | transfem-alt | transfem-alt2 | transfem-alt3 |
| 男性倾向跨性别Transmasculine | |||
|---|---|---|---|
![]() | ![]() | ![]() | ![]() |
| transmasc | transmasc-alt | transmasc-alt2 | transmasc-alt3 |
| 中性倾向跨性别Transneutral | |||
|---|---|---|---|
![]() | ![]() | ![]() | ![]() |
| transneutral | transneutral-alt | transneutral-alt2 | transneutral-alt3 |
| 无标签Unlabeled | |||
|---|---|---|---|
![]() | ![]() | ![]() | ![]() |
| unlabeled | unlabeled-alt | unlabeled-alt2 | unlabeled-alt3 |
| 新异性别Xenogender | |||
|---|---|---|---|
![]() | ![]() | ![]() | ![]() |
| xenogender | xenogender-alt | xenogender-alt2 | xenogender-alt3 |
| 新异性别骄傲新设计 | |
|---|---|
![]() | ![]() |
| xenogender-re | xenogender-re-alt |
+ 安那其logo
| 安那其共产主义Anarcho-Communism | |||
|---|---|---|---|
![]() | ![]() | ![]() | ![]() |
| ancom | ancom-alt | ancom-alt2 | ancom-alt3 |
| 安那其超人类主义Anarcho-Transhumanism | |||
|---|---|---|---|
![]() | ![]() | ![]() | ![]() |
| antrans | antrans-alt | antrans-alt2 | antrans-alt3 |
| 安那其酷儿Anarcho-Queer | |||
|---|---|---|---|
![]() | ![]() | ![]() | ![]() |
如果你遇到问题或者bug,或者有意见建议,或者想要加入更多logo,请评论或私信告知
Dr Talcite。
显示脚注块
1. 译注:截至发表时,中分和中分沙盒站仍在使用Sigma-9。2. 译注:费城骄傲节采用的彩虹旗帜,包括了上方两个棕黑条纹,其象征着少数族裔身份和对AIDS死者的悼念。3. 译注:旗帜左侧的三角形象征进步,其融入了象征跨性别者的蓝粉白条纹和象征少数族裔/缅怀AIDS死者的棕黑条纹。4. “被边缘化的取向、性别认同与倾向、间性者”("Marginalized Orientations, Gender Alignments, and Intersex")的首字母缩写。5. 译注:泛指性倾向和浪漫倾向会变化、流动或波动。6. 译注:没有、感受不到或拒绝任何性别认同/身份/标签。7. 译注:感受不到浪漫吸引。8. 译注:感受不到性吸引。一般的通俗说法“无性恋”其实含糊地包括了无性吸引(Asexual)和无浪漫吸引(Aromantic)两种特征,英文里的区分则较为清晰。9. 译注:指向自己的性吸引取向。10. 译注:泛指所有指向自己的取向,包括性取向、浪漫取向等。11. 译注:原文包括性倾向(-sexual)和浪漫倾向(-romantic),下同,不再注明且都使用“X性恋”形式概括。12. 译注:认同两个性别,通常是男女两性。13. 译注:一部分性别认同属于男性范畴。14. 译注:一部分性别认同属于女性范畴。15. 译注:一般指只有在建立了深厚感情联系之后才能产生浪漫吸引。16. 译注:一般指只有在建立了深厚感情联系之后才能产生性吸引。17. 译注:可参见下文“非二元性别”。不过,因其性质,非二元性别者之间不一定都严格属于“同性”,这个词只是代表双方都是非二元性别。18. 译注:性别认同会随时间改变/流动。19. 译注:性别认同的强度会随时间改变。不同于流动性别,波动性别的性别类别不会发生变化,仅有性别认同的强弱会变化。20. 译注:一般泛指性别认同非常规或挑战传统性别框架,概念上和非二元性别类似。21. 译注:详见下面几个属性。22. 译注:详见下面几个属性对“灰色”的解释。23. 译注:介于完全无浪漫吸引和有浪漫吸引之间,属于广义的无性恋谱系,其可能拥有一定程度的浪漫吸引,又或者体验浪漫吸引的方式非典型。24. 译注:介于完全无性吸引和有性吸引之间,属于广义的无性恋谱系,其可能拥有一定程度的性吸引,又或者体验性吸引的方式非典型。25. 译注:出生时的性生理特征不同于一般认知里的男/女两性生理特征。26. 译注:性别认同中性,但不同于无性别,其仍然存在某种性别认同,只不过这个认同是中性的。27. 译注:性别认同不完全属于男/女二元性别之一,或位于光谱外等。非二元性别是一个伞式术语,本页的无性别、双性别、流动性别、波动性别、部分性别、泛性别均可以算是非二元性别。28. 译注:类似于泛性恋,会被所有性别吸引,但不同性别因素对吸引有一定影响(如吸引的强度等)。29. 译注:会被所有性别吸引,而且认为性别要素并不决定其吸引力。30. 译注:同时拥有能认识到的全部性别认同/身份/标签。31. 译注:会被多个(但往往不是全部)性别吸引,往往指三个或以上。32. 译注:一种特殊的关系模式或吸引,不同于一般意义上认为的友情或爱情关系。33. 译注:性别认同与出生时的被指派性别不同。34. 译注:性别认同倾向于女性的跨性别者。35. 译注:性别认同倾向于男性的跨性别者。36. 译注:性别认同倾向于中性/不倾向于男女任何一侧的跨性别者。37. 译注:详见下面两个属性。38. 译注:泛指超出人类传统二元性别理解的性别认同概念。这些性别概念不使用“男/女”或者基于男女而衍生出的概念定义,而是借用物品、抽象概念、动植物、感官特征、美学氛围等比喻描述。39. 译注:超人类主义主张通过智慧理性和先进科学技术改进人类自身,以消除疾病、残障、衰老、死亡等不利于人类发展的痛苦和障碍,以及大幅度提升智力、延长寿命、提高生理和心理能力等超越性目标。40. 译注:结合了安那其主义和性少数权利运动、酷儿理论(关于性与性别的进步派思想)。





























































































































































































