路径 D:\ireport365\ireport365.war\js\enduser\designer\vs-component-engine.js
在oap分析下面写 1800左右行大概
```
B.groups.push({
name: "dh",
title: {
text: "加载动画"
},
elements: [{
title: "动画开启",
type: "switch",
bind: "showDh",
on: vsLang.on,
off: vsLang.off
},{
title: "动画选择",
type: "select-s",
bind: "animationContent",
show: function() {
return s.component.config.showDh
},
items: [{
name: "淡入",
value: "a-fadein"
}, {
name: "淡入-从上",
value: "a-fadeinT"
}, {
name: "淡入-从右",
value: "a-fadeinR"
}, {
name: "淡入-从下",
value: "a-fadeinB"
}, {
name: "淡入-从左",
value: "a-fadeinL"
}, {
name: "弹入",
value: "a-bouncein"
}, {
name: "弹入-从上",
value: "a-bounceinT"
}, {
name: "弹入-从右",
value: "a-bounceinR"
}, {
name: "弹入-从下",
value: "a-bounceinB"
}, {
name: "弹入-从左",
value: "a-bounceinL"
}, {
name: "转入",
value: "a-rotatein"
}, {
name: "转入-从左上",
value: "a-rotateinLT"
}, {
name: "转入-从左下",
value: "a-rotateinLB"
}, {
name: "转入-从右上",
value: "a-rotateinRT"
}, {
name: "转入-从右下",
value: "a-rotateinRB"
}, {
name: "翻转",
value: "a-flip"
}, {
name: "翻入-X轴",
value: "a-flipinX"
}, {
name: "翻入-Y轴",
value: "a-flipin a-flipinY"
}, {
name: "闪烁",
value: "a-flash"
}, {
name: "震颤",
value: "a-shake"
}, {
name: "摇摆",
value: "a-swing"
}, {
name: "摇晃",
value: "a-wobble"
}, {
name: "震铃",
value: "a-ring"
}]
}]
});
```
路径:D:\ireport365\ireport365.war\js\enduser\designer\vs-designer-component.js
在以前oap分析下面写 大概1800行位置
```
// 组件加载动画系列 start
// 加载动画开关
$scope.$watch("component.config.showDh",
function(newValue) {
$scope.component.config.showDh = newValue;
});
// 监听选择动画
$scope.$watch("component.config.animationContent", function (newValue,oldValue) {
if (newValue != null && newValue !== oldValue) {
// console.log(newValue)
$scope.component.config.animationContent = newValue;
// console.log($scope.component.config.animationContent)
}
});
// 组件加载动画系列 end
```
路径:D:\ireport365\ireport365.war\template\designer\main.html
添加css文件
```
<link href="${pageContext.request.contextPath}/libs/animation/animation.css" rel="stylesheet">
```
防止出错直接正行代码 全部复制 如图的位置
![](https://box.kancloud.cn/2a90be6c5acb50a04fa0167a084e54b3_1000x492.png)
```
<div class="box-content {{ component.config.showDh?component.config.animationContent.value:'' }}" ng-style="{'background-size':component.config.backgroundSize.x+' '+component.config.backgroundSize.y, 'background-position':component.config.backgroundPosition.x+' '+component.config.backgroundPosition.y, 'background-image':compileAttachmentStyleUrl(component.config.backgroundImage), 'background-repeat':component.config.backgroundRepeat,'background-color': component.context.measureLinkSelected ? component.config.mLinkBgColor : component.config.backgroundColor, 'border-radius':component.config.borderRadius+'px', 'border-top': component.context.measureLinkSelected ? component.config.mLinkBorderTopSize+'px solid '+component.config.mLinkBorderTopColor : component.config.borderTopSize+'px solid '+component.config.borderTopColor, 'border-bottom': component.context.measureLinkSelected ? component.config.mLinkBorderBottomSize+'px solid '+component.config.mLinkBorderBottomColor : component.config.borderBottomSize+'px solid '+component.config.borderBottomColor, 'border-left': component.context.measureLinkSelected ? component.config.mLinkBorderLeftSize+'px solid '+component.config.mLinkBorderLeftColor : component.config.borderLeftSize+'px solid '+component.config.borderLeftColor, 'border-right': component.context.measureLinkSelected ? component.config.mLinkBorderRightSize+'px solid '+component.config.mLinkBorderRightColor : component.config.borderRightSize+'px solid '+component.config.borderRightColor, 'border-image-slice': component.config.borderImageSlice == null || component.config.borderImageSlice.length === 0 ? '14 fill' : component.config.borderImageSlice, 'border-image-source': compileFullUrl(attachmentPrefix+component.config.borderImageSource)}">
```
路径:D:\ireport365\ireport365.war\WEB-INF\classes\system-resource\report-template.html
添加css文件
```
<link href="${cdnPath}libs/animation/animation.css" rel="stylesheet">
```
防止出错 整行复制吧 如下图位置
![](https://box.kancloud.cn/ba1994d197c4b4715192128e3623b721_821x569.png)
```
<div class="box-content {{ component.config.showDh?component.config.animationContent.value:'' }}" ng-style="{'background-size':component.config.backgroundSize.x+' '+component.config.backgroundSize.y, 'background-position':component.config.backgroundPosition.x+' '+component.config.backgroundPosition.y, 'background-image':'url('+compileUrl(attachmentPrefix+component.config.backgroundImage)+')', 'background-repeat':component.config.backgroundRepeat,'background-color': component.context.measureLinkSelected ? component.config.mLinkBgColor : component.config.backgroundColor, 'border-radius':component.config.borderRadius+'px', 'border-top': component.context.measureLinkSelected ? component.config.mLinkBorderTopSize+'px solid '+component.config.mLinkBorderTopColor : component.config.borderTopSize+'px solid '+component.config.borderTopColor, 'border-bottom': component.context.measureLinkSelected ? component.config.mLinkBorderBottomSize+'px solid '+component.config.mLinkBorderBottomColor : component.config.borderBottomSize+'px solid '+component.config.borderBottomColor, 'border-left': component.context.measureLinkSelected ? component.config.mLinkBorderLeftSize+'px solid '+component.config.mLinkBorderLeftColor : component.config.borderLeftSize+'px solid '+component.config.borderLeftColor, 'border-right': component.context.measureLinkSelected ? component.config.mLinkBorderRightSize+'px solid '+component.config.mLinkBorderRightColor : component.config.borderRightSize+'px solid '+component.config.borderRightColor, 'border-image-slice': component.config.borderImageSlice == null || component.config.borderImageSlice.length === 0 ? '14 fill' : component.config.borderImageSlice, 'border-image-source': compileFullUrl(attachmentPrefix+component.config.borderImageSource)}">
```
还有浮动后 如下图的位置
![](https://box.kancloud.cn/30c31a1039a4ac26dc587efc7c2174db_874x549.png)
```
<div class="box-content {{ component.config.showDh?component.config.animationContent.value:'' }}" ng-style="{'background-size':component.config.backgroundSize.x+' '+component.config.backgroundSize.y, 'background-position':component.config.backgroundPosition.x+' '+component.config.backgroundPosition.y, 'background-image':'url('+compileUrl(attachmentPrefix+component.config.backgroundImage)+')', 'background-repeat':component.config.backgroundRepeat,'background-color': component.config.backgroundColor, 'border-radius':component.config.borderRadius+'px', 'border-top': component.config.borderTopSize+'px solid '+component.config.borderTopColor, 'border-bottom': component.config.borderBottomSize+'px solid '+component.config.borderBottomColor, 'border-left': component.config.borderLeftSize+'px solid '+component.config.borderLeftColor, 'border-right': component.config.borderRightSize+'px solid '+component.config.borderRightColor, 'border-image-slice': component.config.borderImageSlice == null || component.config.borderImageSlice.length === 0 ? '14 fill' : component.config.borderImageSlice, 'border-image-source': compileFullUrl(attachmentPrefix+component.config.borderImageSource)}">
```
- video
- treemap
- mian.html文件注释
- 配置项tab
- 配置项属性
- internalRefreshAxisMdelData函数梳理
- 函数配置项-engine文件
- 替换数据源流程
- design.js
- 树图
- 下钻 废弃
- 人体图
- 下钻地图
- 行列互转
- 预览样式
- logo旁边的报表名
- echarts 组件生成图片
- 数据集样式
- 头部 黑色head
- 手机 ipad 图片
- k线图部分
- 平台管理css样式
- 目录css和平板的边距
- 设计页-数据源-目录
- 数据集 - 查看数据表 -按钮和目录样式
- 报表列表页按钮css
- 角色管理页按钮css
- 推送通知按钮css
- 子账号按钮css
- 数据连接
- openlayers地图线路图
- openlayers4_map_designer.js
- openlayers4_map_view.js
- 说明
- 常用图标小bug
- echarts 气泡地图
- echarts 线路轨迹图
- 导出pdf
- 可视化sql--css
- 表格滚动
- 主题色
- 时间轴
- 分享弹框
- 管理平台header和菜单
- 报表平台和菜单
- 初始化组件颜色
- 其他弹框
- olap分析样式-废弃
- 3d地图柱状图
- 关系图
- olap分析
- 地区地图
- k线图相关属性设置
- 世界地图
- 时间轴(new)
- 选择省份下转地图
- 选择省市飞线地图
- 面积预警地图默认颜色
- 组件覆层开关组件
- 汽车仪表盘bug
- 雷达图bug修复不能分享的问题
- 饼状 条形图 自动播放
- 临时用
- 自动轮播
- 方形元素 按钮浮动报错
- 面积预警地图整合可选择省市区
- 下钻地图添加返回按钮
- 下钻地图修复预警bug
- 基本时间组件
- 添加时钟组件
- 3d地球组件
- 盒须图
- 组件加载动画
- 报表背景渐变色
- 主题模板
- 没用
- 3机房第三方组件
- 设计
- 分享
- 3d机房需要的静态资源
- cesium地球需要的文件以及样式
- cesium地球
- 设计页
- 分享页
- 图标条形图
- 世豪-前端代码整理
- component.css 文件新添加
- 杂项
- index.jsp
- designer.css 样式暂时不整理 里面比较杂
- vs-common.js 新加生成html2canvas pdf
- vs-component-basic.js 完
- vs-component-datasource.js 完
- vs-component-engine.js 完
- vs-component-widget-grid.js 完
- vs-component-widget-square.js 完
- vs-designer.js 完
- vs-designer-component.js 完
- vs-designer-report.js 完
- vs-designer-reportpage.js 完
- vs-component-echarts.js 完
- main.html 完
- component.html 新加组件设置页模板
- 以前的报表页设置控制器---做个记录
- 大概修改过的代码
- 2019-5-8 修改皮肤控制器
- 选择模板
- 桑基图2019-11-20
- bug 修正 2019-11-21
- 插图柱状图
- cesiumchart组件
- gis 地图 联动 弹框 图标
- 动态面积图添加按钮类配置项
- 玫瑰图形组件
- cesium 图形 和three.js 冲突的bug
- gis 地图 默认图层
- 网格标签
- gis 点图 值域
- gis 面图 值域
- 按钮图标添加提示框
- 百度地图
- 剩余的组件
- gulp说明文档
- 色斑图加透明