为了账号安全,请及时绑定邮箱和手机立即绑定

你好,请教一下angular如何让一个div位置的高度逐渐增加?

你好,请教一下angular如何让一个div位置的高度逐渐增加?

猛跑小猪 2019-11-12 22:10:50
angular如何让一个div位置的高度逐渐增加
查看完整描述

3 回答

?
慕桂英4014372

TA贡献1871条经验 获得超13个赞

1<div style="width: 100%;background-color: #8c8c8c" [style.height]="height + 'px'"></div>
123456789height = 0; constructor() {} ngOnInit() {    setInterval(() => {        this.height++;    }, 1000);}


查看完整回答
反对 回复 2019-11-23
?
尚方宝剑之说

TA贡献1788条经验 获得超4个赞

能具体说一下你的需求吗?

创建自定义指令的方法:

1234567891011<!--创建自定义指令--><div id="appauto" data-ng-app="appauto">    <!--标签-->    <app-auto></app-auto>    <!--属性-->    <div app-auto></div>    <!--类名-->    <div class="app-auto"></div>    <!--注释-->    <!-- directive:app-auto --></div>
12345678910var appauto=angular.module('appauto',[]);        appauto.directive('appAuto',function(){            return {//                restrict限制使用://                A属性E元素C类名M注释,默认EA                restrict:'AEMC',                template:'<h1>自定义指令创建</h1>'            };        });        angular.bootstrap(document.getElementById('appauto'),['appauto']);


查看完整回答
反对 回复 2019-11-23
  • 3 回答
  • 0 关注
  • 1149 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信