-
郑文华 小试身手Lv3
发表于2020-3-21 17:18
楼主
- var btnid = 'WidgetParamButton49'; //按钮代号 在开发者工具中定位
- var a = 'HHH125'; //容器代号
- b =true; //初始化状态,true为正常状态
- $('#'+btnid).click(
- function(){
- if(b){
- b=false; // 把状态设为放大状态
- document.getElementById(a).style.transform="scale3d(2,2,2)"
- }else{
- b=true; // 把状态设为正常状态
- document.getElementById(a).style.transform="scale3d(1,1,1)"
- }
- }
- );