react3dtagcloud
Advanced tools
Comparing version 0.0.7 to 0.0.8
107
dist/tag.js
@@ -1,40 +0,81 @@ | ||
import React from 'react'; | ||
"use strict"; | ||
const _baseAngle = Math.PI / 360, | ||
R = 200; | ||
Object.defineProperty(exports, "__esModule", { | ||
value: true | ||
}); | ||
exports.default = void 0; | ||
const _focalLength = R * 1.5; // 焦距 | ||
var _react = _interopRequireDefault(require("react")); | ||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } | ||
export default class Tag extends React.Component { | ||
constructor(props) { | ||
super(props); | ||
} | ||
function _typeof(obj) { if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); } | ||
render() { | ||
const scale = _focalLength / (_focalLength - this.props.z); | ||
const alpha = (this.props.z + R) / (2 * R); | ||
const tagStyle = { | ||
display: 'inline-block', | ||
position: 'absolute', | ||
height: '50px', | ||
lineHeight: '50px', | ||
fontSize: '20px', | ||
textDecoration: 'none' | ||
}; | ||
const otherStyle = { | ||
left: this.props.x + 'px', | ||
top: this.props.y + 'px', | ||
fontSize: 14 * scale + 'px', | ||
opacity: alpha + 0.5, | ||
color: this.props.color | ||
}; | ||
return React.createElement("a", { | ||
href: "#", | ||
style: { ...tagStyle, | ||
...otherStyle | ||
} | ||
}, this.props.name); | ||
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; var ownKeys = Object.keys(source); if (typeof Object.getOwnPropertySymbols === 'function') { ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function (sym) { return Object.getOwnPropertyDescriptor(source, sym).enumerable; })); } ownKeys.forEach(function (key) { _defineProperty(target, key, source[key]); }); } return target; } | ||
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } | ||
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } | ||
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } | ||
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; } | ||
function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); } | ||
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; } | ||
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); } | ||
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); } | ||
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); } | ||
var _baseAngle = Math.PI / 360, | ||
R = 200; | ||
var _focalLength = R * 1.5; // 焦距 | ||
var Tag = | ||
/*#__PURE__*/ | ||
function (_React$Component) { | ||
_inherits(Tag, _React$Component); | ||
function Tag(props) { | ||
_classCallCheck(this, Tag); | ||
return _possibleConstructorReturn(this, _getPrototypeOf(Tag).call(this, props)); | ||
} | ||
} | ||
_createClass(Tag, [{ | ||
key: "render", | ||
value: function render() { | ||
var scale = _focalLength / (_focalLength - this.props.z); | ||
var alpha = (this.props.z + R) / (2 * R); | ||
var tagStyle = { | ||
display: 'inline-block', | ||
position: 'absolute', | ||
height: '50px', | ||
lineHeight: '50px', | ||
fontSize: '20px', | ||
textDecoration: 'none' | ||
}; | ||
var otherStyle = { | ||
left: this.props.x + 'px', | ||
top: this.props.y + 'px', | ||
fontSize: 14 * scale + 'px', | ||
opacity: alpha + 0.5, | ||
color: this.props.color | ||
}; | ||
return _react.default.createElement("a", { | ||
href: "#", | ||
style: _objectSpread({}, tagStyle, otherStyle) | ||
}, this.props.name); | ||
} | ||
}]); | ||
return Tag; | ||
}(_react.default.Component); | ||
exports.default = Tag; |
{ | ||
"name": "react3dtagcloud", | ||
"version": "0.0.7", | ||
"version": "0.0.8", | ||
"description": "基于 react 的 3d 标签云", | ||
@@ -5,0 +5,0 @@ "repository": "crazylxr/3dtagcloudforeact", |
Sorry, the diff of this file is not supported yet
15202
347