• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

TypeScript react-emotion.default函数代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了TypeScript中react-emotion.default函数的典型用法代码示例。如果您正苦于以下问题:TypeScript default函数的具体用法?TypeScript default怎么用?TypeScript default使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。



在下文中一共展示了default函数的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的TypeScript代码示例。

示例1: styled

    export interface DetailedHTMLProps<T, U> {}
    export interface HTMLAttributes<T> {}
}
export = React;
export as namespace React;
// @filename: node_modules/create-emotion-styled/types/react/index.d.ts
/// <reference types="react" />
declare module 'react' { // augment
    interface HTMLAttributes<T> {
        css?: unknown;
    }
}
export interface StyledOtherComponentList {
    "div": React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>
}
export interface StyledOtherComponent<A, B, C> {}

// @filename: node_modules/create-emotion-styled/index.d.ts
export * from "./types/react";

// @filename: node_modules/react-emotion/index.d.ts
import {StyledOtherComponent, StyledOtherComponentList} from "create-emotion-styled";
export default function styled(tag: string): (o: object) => StyledOtherComponent<{}, StyledOtherComponentList["div"], any>;

// @filename: index.ts
import styled from "react-emotion"

const Form = styled('div')({ color: "red" })

export default Form
开发者ID:DiLRandI,项目名称:TypeScript,代码行数:30,代码来源:reactTransitiveImportHasValidDeclaration.ts


示例2: styled

/*
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 *
 */

import styled from 'react-emotion';

export const MODAL_ACCENT = 'rgba(255, 234, 194, 0.4)';
export const MODAL_HIGHLIGHT_STRONG = 'rgba(255, 234, 194, 0.2)';
export const MODAL_HIGHLIGHT_WEAK = 'rgba(255, 234, 194, 0.0)';

export const ModalContainer = styled('div')`
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
`;

export const ModalButtonContainer = styled('div')`
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  margin: auto;
开发者ID:codecorsair,项目名称:Camelot-Unchained,代码行数:31,代码来源:styles.ts


示例3: styled

/*
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 *
 */

import styled from 'react-emotion';

export const PATCH_NOTES_COLOR = 'rgba(122, 184, 227, 1)';
export const NEWS_COLOR = 'rgba(236, 119, 127, 1)';

export const FeaturedContainer = styled('div')`
  position: relative;
  width: calc(100% - 10px);
  height: 500px;
  right: -5px;
  background-color: #101010;
  border: 1px solid #2E2E2E;
  display: flex;
  overflow: hidden;
  padding: 20px 0;
  margin-bottom: 10px;
  background:
    linear-gradient(
      to bottom,
      transparent,
      rgba(16, 16, 16, 0.5) 10%,
      rgba(16, 16, 16, 1) 60%
    ),
    linear-gradient(
开发者ID:Mehuge,项目名称:Camelot-Unchained,代码行数:31,代码来源:styles.ts


示例4: styled

/*
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 */

import styled, { css } from 'react-emotion';

export const HUDEditorContainer = styled('div')`
  position: fixed;
  width: 200px;
  height: 35%;
  overflow-x: hidden;
  overflow-y: hidden;
  color: white;
  background-color: gray;
  background: url(images/progression/progress-bg-grey.png) no-repeat;
  border: 2px solid #6e6c6c;
  box-shadow: 0 0 30px 0 #000;
  z-index: 942;
`;

export const HUDEditorTitle = styled('div')`
  position: relative;
  z-index: 1;
  padding-left: 4px;
  div.editorDragHandle {
    width: 100%;
    cursor: move;
  }
  div.resetHUDButton {
开发者ID:Mehuge,项目名称:Camelot-Unchained,代码行数:31,代码来源:style.ts


示例5: rgba

    position: absolute;
    left: 0;
    right: 0;
    bottom: 5px;
    opacity: 0;
    height: 85%;
    width: 85px;
    background: linear-gradient(transparent, rgba(255,255,255,0.2));
    clip-path: polygon(80% 0%, 100% 0%, 20% 100%, 0% 100%);
    -webkit-clip-path: polygon(80% 0%, 100% 0%, 20% 100%, 0% 100%);
    -webkit-animation: ${shine} 0.5s ease forwards;
    animation: ${shine} 0.5s ease forwards;
  }
`;

export const ButtonGlow = styled('div')`
  position: absolute;
  top: 10px;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(rgba(255,255,255,0.8), transparent, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
`;

export const ButtonText = styled('div')`
  display: flex;
  align-items: center;
  justify-content: center;
开发者ID:codecorsair,项目名称:Camelot-Unchained,代码行数:31,代码来源:styles.ts


示例6: styled

/*
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 */

import styled from 'react-emotion';
import * as CSS from 'lib/css-helper';

export const PopupDialog = styled('div')`
  position: absolute;
  ${CSS.IS_COLUMN}
`;

export const Container = styled('div')`
  ${CSS.IS_COLUMN} ${CSS.EXPAND_TO_FIT}
  padding: 20px;
  overflow: auto;
  padding-top: 0;
`;
开发者ID:Mehuge,项目名称:Camelot-Unchained,代码行数:20,代码来源:PopupDialog.ts


示例7: styled

/*
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 *
 */

import styled from 'react-emotion';
import * as CONFIG from 'UI/config';

export const Container = styled('div')`
  margin-top: 20px;
  height: 100px;
  text-align: center;
  color: #e9d5bd;
  font-family: TitilliumWeb;
  font-size: 18px;
  margin: 30px 150px 0px 150px;
`;

export const InputContainer = styled('div')`
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  position: absolute;
  bottom: 20px;
  left: 250px;
`;
开发者ID:Mehuge,项目名称:Camelot-Unchained,代码行数:30,代码来源:styles.ts



注:本文中的react-emotion.default函数示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
TypeScript react-fiber-export.IRenderer类代码示例发布时间:2022-05-25
下一篇:
TypeScript test-utils.Simulate类代码示例发布时间:2022-05-25
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap