UNPKG

@alicloud/console-components

Version:

Alibaba Cloud React Components

18 lines (17 loc) 890 B
/** * title: "纯文本Tooltip" * description: "通过设置align属性设置气泡出现方向,气泡内容通过Children自定义。" */ import React from 'react'; import { Balloon, Button } from '@alicloud/console-components'; var but = (React.createElement(Button, { id: "topRight", style: { margin: '25px 0 25px 400px', background: '#E5E5E5', } })); var baseWithPureText = { trigger: but, content: (React.createElement("div", { style: { width: '266px' } }, "\u70B9\u51FB/\u9F20\u6807\u79FB\u5165\u5143\u7D20\uFF0C\u5F39\u51FA\u6C14\u6CE1\u6D6E\u5C42\uFF0C\u5185\u5BB9\u6587\u6848\u8D85\u51FA\u957F\u5EA6\u540E\u5141\u8BB8\u81EA\u52A8\u6362\u884C\u3002")), }; export default (function () { return (React.createElement(Balloon, { align: "l", closable: false, trigger: baseWithPureText.trigger, triggerType: "click" }, baseWithPureText.content)); });