From 1e0378cf0dbc0e93beecef77c8e914ffebc15cd2 Mon Sep 17 00:00:00 2001 From: bayanxing Date: Fri, 25 Feb 2022 09:59:52 +0800 Subject: [PATCH] add test cases Signed-off-by: bayanxing --- .../js/default/pages/badge/prop/index.hml | 2 +- .../main/js/default/pages/list/prop/index.js | 2 +- .../pages/stepperItem/router/index.css | 4 +- .../default/pages/stepperItem/router/index.js | 158 ++++++++++-------- multimedia/audio/audio.iml | 11 ++ .../audioPlayer/audioPlayer.iml | 11 ++ .../audioRecorder/audioRecorder.iml | 11 ++ 7 files changed, 124 insertions(+), 75 deletions(-) create mode 100644 multimedia/audio/audio.iml create mode 100644 multimedia/media/media_js_standard/audioPlayer/audioPlayer.iml create mode 100644 multimedia/media/media_js_standard/audioRecorder/audioRecorder.iml diff --git a/ace/ace_standard/src/main/js/default/pages/badge/prop/index.hml b/ace/ace_standard/src/main/js/default/pages/badge/prop/index.hml index 93ab9ceac..2f9e9cdd4 100644 --- a/ace/ace_standard/src/main/js/default/pages/badge/prop/index.hml +++ b/ace/ace_standard/src/main/js/default/pages/badge/prop/index.hml @@ -179,7 +179,7 @@ - + 特有属性 -- visible diff --git a/ace/ace_standard/src/main/js/default/pages/list/prop/index.js b/ace/ace_standard/src/main/js/default/pages/list/prop/index.js index 9cffaf510..874d7437d 100644 --- a/ace/ace_standard/src/main/js/default/pages/list/prop/index.js +++ b/ace/ace_standard/src/main/js/default/pages/list/prop/index.js @@ -50,7 +50,7 @@ showPropTrue : null, showPropFalse : null, showPropNone : null , - array:[1,2,3,4,5,6,7,8], + array:['#',1,2,3,4,5,6,7,8], scrollPageTrue:null, scrollPageFalse:null, scrollPageNone:null, diff --git a/ace/ace_standard/src/main/js/default/pages/stepperItem/router/index.css b/ace/ace_standard/src/main/js/default/pages/stepperItem/router/index.css index fa2460bf4..ec4016a13 100644 --- a/ace/ace_standard/src/main/js/default/pages/stepperItem/router/index.css +++ b/ace/ace_standard/src/main/js/default/pages/stepperItem/router/index.css @@ -423,11 +423,11 @@ background: repeating-linear-gradient(to right, rgba(255, 255, 0, 1) 30px,rgba(0, 0, 255, .5) 60px); } -.accessibility-container{ +.access-container{ flex-direction: column; } -.accessibility1{ +.access1{ background-color: #321124; margin: 5px; width: 90%; diff --git a/ace/ace_standard/src/main/js/default/pages/stepperItem/router/index.js b/ace/ace_standard/src/main/js/default/pages/stepperItem/router/index.js index 94e59bff2..3eb1e7ebc 100644 --- a/ace/ace_standard/src/main/js/default/pages/stepperItem/router/index.js +++ b/ace/ace_standard/src/main/js/default/pages/stepperItem/router/index.js @@ -1,21 +1,105 @@ +/** + * Copyright (c) 2022 Shenzhen Kaihong Digital Industry Development Co., Ltd. + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + import prompt from '@system.prompt'; + +var options = { + duration: 1500, + easing: 'friction', + delay: 100, + fill: 'forwards', + iterations: 2, + direction: 'normal', +}; +var frames = [ + { + transform: { + translate: '-120px', + rotate:'10deg', + scale:0.2, + skew:'40deg' + }, + opacity: 0.1, + offset: 0.0, + width: '40%', + height:'20px', + backgroundColor:'#ff0000', + backgroundPosition:'10px 20px', + transformOrigin:'left top' + }, + { + transform: { + translateX: '0px', + translateY: '5px', + rotateX:'10deg', + rotateY:'10deg', + scaleX:0.5, + scaleY:0.7, + skewX:'22deg', + skewY:'30deg' + }, + opacity: 0.6, + offset: 2.0, + width: '60%', + height:'30px', + backgroundColor:'#ff00ff', + backgroundPosition:'15px 25px', + transformOrigin:'center top' + }, + { + transform: { + translateX: '100px', + translateY: '0px', + translateZ: '20px', + rotateX:'0deg', + rotateY:'0deg', + rotateZ:'30deg', + scaleX:1, + scaleY:1, + scaleZ:2, + skewX:'0', + skewY:'0', + skewZ:'30deg' + }, + opacity: 1, + offset: 0.0, + width: '100%', + height:'30px', + backgroundColor:'#ffff00', + backgroundPosition:'0px', + transformOrigin:'center center' + }, +]; + export default { data: { - label_1: + label1: { prevLabel: 'BACK', nextLabel: 'NEXT', status: 'normal' }, - label_2: + label2: { prevLabel: 'BACK', nextLabel: 'NEXT', status: 'normal' }, - label_3: + label3: { prevLabel: 'BACK', nextLabel: 'NEXT', @@ -357,74 +441,6 @@ export default { functionTest3(event){ var function3 = this.$element('function3'); - var options = { - duration: 1500, - easing: 'friction', - delay: 100, - fill: 'forwards', - iterations: 2, - direction: 'normal', - }; - var frames = [ - { - transform: { - translate: '-120px', - rotate:'10deg', - scale:0.2, - skew:'40deg' - }, - opacity: 0.1, - offset: 0.0, - width: '40%', - height:'20px', - backgroundColor:'#ff0000', - backgroundPosition:'10px 20px', - transformOrigin:'left top' - }, - { - transform: { - translateX: '0px', - translateY: '5px', - rotateX:'10deg', - rotateY:'10deg', - scaleX:0.5, - scaleY:0.7, - skewX:'22deg', - skewY:'30deg' - }, - opacity: 0.6, - offset: 2.0, - width: '60%', - height:'30px', - backgroundColor:'#ff00ff', - backgroundPosition:'15px 25px', - transformOrigin:'center top' - }, - { - transform: { - translateX: '100px', - translateY: '0px', - translateZ: '20px', - rotateX:'0deg', - rotateY:'0deg', - rotateZ:'30deg', - scaleX:1, - scaleY:1, - scaleZ:2, - skewX:'0', - skewY:'0', - skewZ:'30deg' - }, - opacity: 1, - offset: 0.0, - width: '100%', - height:'30px', - backgroundColor:'#ffff00', - backgroundPosition:'0px', - transformOrigin:'center center' - }, - ]; - var animation = function3.animate(frames, options); animation.play() animation.onfinish = function(){ diff --git a/multimedia/audio/audio.iml b/multimedia/audio/audio.iml new file mode 100644 index 000000000..87f35a14e --- /dev/null +++ b/multimedia/audio/audio.iml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/multimedia/media/media_js_standard/audioPlayer/audioPlayer.iml b/multimedia/media/media_js_standard/audioPlayer/audioPlayer.iml new file mode 100644 index 000000000..f76df2b77 --- /dev/null +++ b/multimedia/media/media_js_standard/audioPlayer/audioPlayer.iml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/multimedia/media/media_js_standard/audioRecorder/audioRecorder.iml b/multimedia/media/media_js_standard/audioRecorder/audioRecorder.iml new file mode 100644 index 000000000..f76df2b77 --- /dev/null +++ b/multimedia/media/media_js_standard/audioRecorder/audioRecorder.iml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file -- GitLab