React Native字体轮廓/ textShadow

时间:2016-08-03 23:34:28

标签: css css3 react-native

是否可以将一个大纲或textShadow添加到反应原生的字体中以实现类似的结果(带有黑色轮廓的白色字体):

enter image description here

在网络上的CSS中,可以为字体添加文本阴影或轮廓,为文本提供字体后面的边框,如下所示:



h1 {
    color: yellow;
    text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}

<h1>Hello World</h1>
&#13;
&#13;
&#13;

是否有可能在本地做出类似的反应?

我从这个堆栈溢出帖子中获取了关于如何使用CSS的CCS片段示例:CSS Font Border?

编辑:更新了问题以尝试使其更清晰

3 个答案:

答案 0 :(得分:9)

是的,可以通过以下属性:

textShadowColor color
textShadowOffset ReactPropTypes.shape( {width: ReactPropTypes.number, height: ReactPropTypes.number} )
textShadowRadius ReactPropTypes.number

https://facebook.github.io/react-native/docs/text.html

实际完成的拉取请求: https://github.com/facebook/react-native/pull/4975

答案 1 :(得分:8)

至少有一种方法可以使它在ios和android上都像这样:

iPhone simulator screenshot with outlined text

想法:

这个想法是在Text对象上使用多个阴影。我们可以通过用View包裹Text组件,并用不同的阴影多次克隆同一个Text对象,以使它们使用不同的方向来做到这一点。

实施:

这是包装器组件的代码:

import * as React from "react";
import { StyleSheet, View } from "react-native";
import { Children, cloneElement, isValidElement } from "react";

type Props = {
  children: any,
  color: string,
  stroke: number
}
const styles = StyleSheet.create({
  outline: {
    position: 'absolute'
  },
});

export class TextStroke extends React.Component<Props> {
  createClones = (w: number, h: number, color?: string) => {
    const { children } = this.props;
    return Children.map(children, child => {
      if (isValidElement(child)) {
        const currentProps = child.props as any;
        const currentStyle = currentProps ? (currentProps.style || {}) : {};

        const newProps = {
          ...currentProps,
          style: {
            ...currentStyle,
            textShadowOffset: {
              width: w,
              height: h
            },
            textShadowColor: color,
            textShadowRadius: 1
          }
        }
        return cloneElement(child, newProps)
      }
      return child;
    });
  }

  render() {
    const {color, stroke, children} = this.props;
    const strokeW = stroke;
    const top = this.createClones(0, -strokeW * 1.2, color);
    const topLeft = this.createClones(-strokeW, -strokeW, color);
    const topRight = this.createClones(strokeW, -strokeW, color);
    const right = this.createClones(strokeW, 0, color);
    const bottom = this.createClones(0, strokeW, color);
    const bottomLeft = this.createClones(-strokeW, strokeW, color);
    const bottomRight = this.createClones(strokeW, strokeW, color);
    const left = this.createClones(-strokeW * 1.2, 0, color);

    return (
      <View>
        <View style={ styles.outline }>{ left }</View>
        <View style={ styles.outline }>{ right }</View>
        <View style={ styles.outline }>{ bottom }</View>
        <View style={ styles.outline }>{ top }</View>
        <View style={ styles.outline }>{ topLeft }</View>
        <View style={ styles.outline }>{ topRight }</View>
        <View style={ styles.outline }>{ bottomLeft }</View>
        { bottomRight }
      </View>
    );
  }
}

如果文字不大,您也只能使用4个方向而不是8个方向来提高效果:

<View>
    <View style={ styles.outline }>{ topLeft }</View>
    <View style={ styles.outline }>{ topRight }</View>
    <View style={ styles.outline }>{ bottomLeft }</View>
    { bottomRight }
</View>

用法:

<TextStroke stroke={ 2 } color={ '#000000' }>
  <Text style={ {
    fontSize: 100,
    color: '#FFFFFF'
  } }> Sample </Text>
</TextStroke>

您还可以在内部使用多个Text对象,因为包装程序会复制所有对象。

性能:

我尚未检查此解决方案的性能。由于我们要复制文本很多次,因此效果可能不佳。

问题:

需要注意stroke的值。较高的值将显示阴影的边缘。如果您确实需要更宽的笔触,则可以通过添加更多图层以覆盖不同的阴影方向来解决此问题。

sample with wide stroke

答案 2 :(得分:0)

另外一个想法,以防万一对某人有用,也许您可​​以使用以下轮廓字体之一:https://www.1001freefonts.com/outline-fonts-2.php