refactor: dialogue styles
This commit is contained in:
parent
a0f6ca9056
commit
59e3c71a1a
|
@ -141,20 +141,11 @@ export default function Dialogue({
|
|||
caretPosition.y += Math.cos(caretRotation) * (CARET_SIZE / 2);
|
||||
return (
|
||||
<div
|
||||
className={styles.dialogue}
|
||||
ref={ref}
|
||||
style={{
|
||||
backgroundColor: '#00000044',
|
||||
border: 'solid 1px white',
|
||||
borderRadius: '8px',
|
||||
color: 'white',
|
||||
padding: '1em',
|
||||
position: 'absolute',
|
||||
left: `${left}px`,
|
||||
margin: '0',
|
||||
top: `${top}px`,
|
||||
transform: 'translate(-50%, -50%)',
|
||||
userSelect: 'none',
|
||||
whiteSpace: 'nowrap',
|
||||
}}
|
||||
>
|
||||
<svg
|
||||
|
@ -174,62 +165,64 @@ export default function Dialogue({
|
|||
>
|
||||
<polygon points="0 0, 24 0, 12 24" />
|
||||
</svg>
|
||||
{
|
||||
dialogue.letters
|
||||
.map(({character, indices, params}, i) => {
|
||||
let color = 'inherit';
|
||||
let fade = 0;
|
||||
let fontStyle = 'normal';
|
||||
let fontWeight = 'normal';
|
||||
let left = 0;
|
||||
let opacity = 1;
|
||||
let top = 0;
|
||||
if (params.blink) {
|
||||
const {frequency = 1} = params.blink;
|
||||
opacity = (radians * (2 / frequency) % TAU) > (TAU / 2) ? opacity : 0;
|
||||
}
|
||||
if (params.fade) {
|
||||
const {frequency = 1} = params.fade;
|
||||
fade = frequency;
|
||||
}
|
||||
if (params.wave) {
|
||||
const {frequency = 1, magnitude = 3} = params.wave;
|
||||
top += magnitude * Math.cos((radians * (1 / frequency)) + TAU * indices.wave / params.wave.length);
|
||||
}
|
||||
if (params.rainbow) {
|
||||
const {frequency = 1} = params.rainbow;
|
||||
color = `hsl(${(radians * (1 / frequency)) + TAU * indices.rainbow / params.rainbow.length}rad 100 50)`;
|
||||
}
|
||||
if (params.shake) {
|
||||
const {magnitude = 1} = params.shake;
|
||||
left += (Math.random() * magnitude * 2) - magnitude;
|
||||
top += (Math.random() * magnitude * 2) - magnitude;
|
||||
}
|
||||
if (params.em) {
|
||||
fontStyle = 'italic';
|
||||
}
|
||||
if (params.strong) {
|
||||
fontWeight = 'bold';
|
||||
}
|
||||
return (
|
||||
<span
|
||||
className={styles.letter}
|
||||
key={i}
|
||||
style={{
|
||||
color,
|
||||
fontStyle,
|
||||
fontWeight,
|
||||
left: `${left}px`,
|
||||
opacity: i <= caret ? opacity : 0,
|
||||
top: `${top}px`,
|
||||
transition: `opacity ${fade}s`,
|
||||
}}
|
||||
>
|
||||
{character}
|
||||
</span>
|
||||
);
|
||||
})
|
||||
}
|
||||
<p className={styles.letters}>
|
||||
{
|
||||
dialogue.letters
|
||||
.map(({character, indices, params}, i) => {
|
||||
let color = 'inherit';
|
||||
let fade = 0;
|
||||
let fontStyle = 'normal';
|
||||
let fontWeight = 'normal';
|
||||
let left = 0;
|
||||
let opacity = 1;
|
||||
let top = 0;
|
||||
if (params.blink) {
|
||||
const {frequency = 1} = params.blink;
|
||||
opacity = (radians * (2 / frequency) % TAU) > (TAU / 2) ? opacity : 0;
|
||||
}
|
||||
if (params.fade) {
|
||||
const {frequency = 1} = params.fade;
|
||||
fade = frequency;
|
||||
}
|
||||
if (params.wave) {
|
||||
const {frequency = 1, magnitude = 3} = params.wave;
|
||||
top += magnitude * Math.cos((radians * (1 / frequency)) + TAU * indices.wave / params.wave.length);
|
||||
}
|
||||
if (params.rainbow) {
|
||||
const {frequency = 1} = params.rainbow;
|
||||
color = `hsl(${(radians * (1 / frequency)) + TAU * indices.rainbow / params.rainbow.length}rad 100 50)`;
|
||||
}
|
||||
if (params.shake) {
|
||||
const {magnitude = 1} = params.shake;
|
||||
left += (Math.random() * magnitude * 2) - magnitude;
|
||||
top += (Math.random() * magnitude * 2) - magnitude;
|
||||
}
|
||||
if (params.em) {
|
||||
fontStyle = 'italic';
|
||||
}
|
||||
if (params.strong) {
|
||||
fontWeight = 'bold';
|
||||
}
|
||||
return (
|
||||
<span
|
||||
className={styles.letter}
|
||||
key={i}
|
||||
style={{
|
||||
color,
|
||||
fontStyle,
|
||||
fontWeight,
|
||||
left: `${left}px`,
|
||||
opacity: i <= caret ? opacity : 0,
|
||||
top: `${top}px`,
|
||||
transition: `opacity ${fade}s`,
|
||||
}}
|
||||
>
|
||||
{character}
|
||||
</span>
|
||||
);
|
||||
})
|
||||
}
|
||||
</p>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
|
|
@ -6,6 +6,23 @@
|
|||
top: 50%;
|
||||
}
|
||||
|
||||
.dialogue {
|
||||
background-color: #00000044;
|
||||
border: solid 1px white;
|
||||
border-radius: 8px;
|
||||
color: white;
|
||||
padding: 1em;
|
||||
position: absolute;
|
||||
margin: 0;
|
||||
transform: translate(-50%, -50%);
|
||||
user-select: none;
|
||||
width: 33%;
|
||||
}
|
||||
|
||||
.letters {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.letter {
|
||||
opacity: 0;
|
||||
position: relative;
|
||||
|
|
Loading…
Reference in New Issue
Block a user