Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Xts Acts
提交
a4d11f40
X
Xts Acts
项目概览
OpenHarmony
/
Xts Acts
1 年多 前同步成功
通知
9
Star
22
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
X
Xts Acts
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
a4d11f40
编写于
5月 27, 2022
作者:
B
bayanxing
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add webView code
Signed-off-by:
N
bayanxing
<
bayanxing@kaihongdigi.com
>
上级
000d2122
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
772 addition
and
0 deletion
+772
-0
arkui/ace_ets_webView/entry/src/main/config.json
arkui/ace_ets_webView/entry/src/main/config.json
+74
-0
arkui/ace_ets_webView/entry/src/main/resources/rawfile/js/img-show.js
...s_webView/entry/src/main/resources/rawfile/js/img-show.js
+332
-0
arkui/ace_ets_webView/entry/src/main/resources/rawfile/js/main.js
...e_ets_webView/entry/src/main/resources/rawfile/js/main.js
+358
-0
arkui/ace_ets_webView/entry/src/main/resources/rawfile/js/tab_qiehuc.js
...webView/entry/src/main/resources/rawfile/js/tab_qiehuc.js
+8
-0
未找到文件。
arkui/ace_ets_webView/entry/src/main/config.json
0 → 100644
浏览文件 @
a4d11f40
{
"app"
:
{
"bundleName"
:
"com.open.harmony.webview"
,
"vendor"
:
"open"
,
"version"
:
{
"code"
:
1000000
,
"name"
:
"1.0.0"
},
"apiVersion"
:
{
"compatible"
:
8
,
"releaseType"
:
"Release"
,
"target"
:
8
}
},
"deviceConfig"
:
{},
"module"
:
{
"package"
:
"com.open.harmony.webview"
,
"name"
:
".MyApplication"
,
"mainAbility"
:
"com.open.harmony.webview.MainAbility"
,
"deviceType"
:
[
"phone"
],
"distro"
:
{
"deliveryWithInstall"
:
true
,
"moduleName"
:
"entry"
,
"moduleType"
:
"entry"
,
"installationFree"
:
false
},
"abilities"
:
[
{
"skills"
:
[
{
"entities"
:
[
"entity.system.home"
],
"actions"
:
[
"action.system.home"
]
}
],
"orientation"
:
"unspecified"
,
"visible"
:
true
,
"srcPath"
:
"MainAbility"
,
"name"
:
".MainAbility"
,
"srcLanguage"
:
"ets"
,
"icon"
:
"$media:icon"
,
"description"
:
"$string:description_mainability"
,
"formsEnabled"
:
false
,
"label"
:
"$string:entry_MainAbility"
,
"type"
:
"page"
,
"launchType"
:
"standard"
}
],
"js"
:
[
{
"mode"
:
{
"syntax"
:
"ets"
,
"type"
:
"pageAbility"
},
"pages"
:
[
"pages/index"
,
"pages/webStyle"
,
"pages/webProp"
,
"pages/webEvent"
],
"name"
:
".MainAbility"
,
"window"
:
{
"designWidth"
:
720
,
"autoDesignWidth"
:
false
}
}
]
}
}
arkui/ace_ets_webView/entry/src/main/resources/rawfile/js/img-show.js
0 → 100644
浏览文件 @
a4d11f40
/**
* 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.
*/
$
(
document
).
ready
(
function
(){
var
$iBox
=
$
(
'
.imgBox
'
),
$iNum
=
$
(
'
.imgNum
'
),
//缓存优化
indexImg
=
1
,
//初始下标
totalImg
=
5
,
//图片总数量
imgSize
=
520
,
//图片尺寸 宽度
moveTime
=
1100
,
//切换动画时间
setTime
=
2500
,
//中间暂停时间
clc
=
null
;
function
moveImg
(){
if
(
indexImg
!=
totalImg
){
$iBox
.
animate
({
left
:
-
(
indexImg
*
imgSize
)
+
'
px
'
},
moveTime
);
$iNum
.
removeClass
(
'
mark-color
'
)
.
eq
(
indexImg
)
.
addClass
(
'
mark-color
'
);
indexImg
++
;
}
else
{
indexImg
=
1
;
$iNum
.
removeClass
(
'
mark-color
'
)
.
eq
(
indexImg
-
1
)
.
addClass
(
'
mark-color
'
);
$iBox
.
animate
({
left
:
0
},
moveTime
);
}
}
$iNum
.
hover
(
function
(){
$iBox
.
stop
();
//结束当前动画
clearInterval
(
clc
);
//暂停循环
$iNum
.
removeClass
(
'
mark-color
'
);
$
(
this
).
addClass
(
'
mark-color
'
);
indexImg
=
$
(
this
).
index
();
$iBox
.
animate
({
left
:
-
(
indexImg
*
imgSize
)
+
'
px
'
},
500
);
},
function
(){
clc
=
setInterval
(
moveImg
,
setTime
);
});
//鼠标放上停止动画
$iBox
.
hover
(
function
(){
$
(
'
.control
'
).
fadeIn
(
200
);
clearInterval
(
clc
);
//暂停循环
},
function
(){
$
(
'
.control
'
).
hide
();
clc
=
setInterval
(
moveImg
,
setTime
);
});
//显示左右
$
(
'
.control
'
).
hover
(
function
(){
clearInterval
(
clc
);
$
(
'
.control
'
).
show
();
// return false;允许传播
});
//向右边前进
$
(
'
.to-right
'
).
click
(
function
(){
if
(
indexImg
!=
totalImg
){
$iBox
.
animate
({
left
:
-
(
indexImg
*
imgSize
)
+
'
px
'
},
moveTime
);
$iNum
.
removeClass
(
'
mark-color
'
)
.
eq
(
indexImg
)
.
addClass
(
'
mark-color
'
);
indexImg
++
;
}
else
{
indexImg
=
1
;
$iNum
.
removeClass
(
'
mark-color
'
)
.
eq
(
indexImg
-
1
)
.
addClass
(
'
mark-color
'
);
$iBox
.
animate
({
left
:
0
},
moveTime
);
}
});
//向左边前进
$
(
'
.to-left
'
).
click
(
function
(){
indexImg
--
;
if
(
indexImg
!=
0
){
$iBox
.
animate
({
left
:
-
((
indexImg
-
1
)
*
imgSize
)
+
'
px
'
},
moveTime
);
$iNum
.
removeClass
(
'
mark-color
'
)
.
eq
((
indexImg
-
1
))
.
addClass
(
'
mark-color
'
);
}
else
{
indexImg
=
totalImg
;
$iNum
.
removeClass
(
'
mark-color
'
)
.
eq
(
indexImg
-
1
)
.
addClass
(
'
mark-color
'
);
$iBox
.
animate
({
left
:
-
((
indexImg
-
1
)
*
imgSize
)
+
'
px
'
},
moveTime
);
}
});
clc
=
setInterval
(
moveImg
,
setTime
);
});
//图片二
$
(
document
).
ready
(
function
(){
var
$iBox
=
$
(
'
.imgBox1
'
),
$iNum
=
$
(
'
.imgNum1
'
),
//缓存优化
indexImg
=
1
,
//初始下标
totalImg
=
5
,
//图片总数量
imgSize
=
520
,
//图片尺寸 宽度
moveTime
=
1200
,
//切换动画时间
setTime
=
2800
,
//中间暂停时间
clc
=
null
;
function
moveImg
(){
if
(
indexImg
!=
totalImg
){
$iBox
.
animate
({
left
:
-
(
indexImg
*
imgSize
)
+
'
px
'
},
moveTime
);
$iNum
.
removeClass
(
'
mark-color
'
)
.
eq
(
indexImg
)
.
addClass
(
'
mark-color
'
);
indexImg
++
;
}
else
{
indexImg
=
1
;
$iNum
.
removeClass
(
'
mark-color
'
)
.
eq
(
indexImg
-
1
)
.
addClass
(
'
mark-color
'
);
$iBox
.
animate
({
left
:
0
},
moveTime
);
}
}
$iNum
.
hover
(
function
(){
$iBox
.
stop
();
//结束当前动画
clearInterval
(
clc
);
//暂停循环
$iNum
.
removeClass
(
'
mark-color
'
);
$
(
this
).
addClass
(
'
mark-color
'
);
indexImg
=
$
(
this
).
index
();
$iBox
.
animate
({
left
:
-
(
indexImg
*
imgSize
)
+
'
px
'
},
500
);
},
function
(){
clc
=
setInterval
(
moveImg
,
setTime
);
});
//鼠标放上停止动画
$iBox
.
hover
(
function
(){
$
(
'
.control1
'
).
fadeIn
(
200
);
clearInterval
(
clc
);
//暂停循环
},
function
(){
$
(
'
.control1
'
).
hide
();
clc
=
setInterval
(
moveImg
,
setTime
);
});
//显示左右
$
(
'
.control1
'
).
hover
(
function
(){
clearInterval
(
clc
);
$
(
'
.control1
'
).
show
();
// return false;允许传播
});
//向右边前进
$
(
'
.to-right1
'
).
click
(
function
(){
if
(
indexImg
!=
totalImg
){
$iBox
.
animate
({
left
:
-
(
indexImg
*
imgSize
)
+
'
px
'
},
moveTime
);
$iNum
.
removeClass
(
'
mark-color
'
)
.
eq
(
indexImg
)
.
addClass
(
'
mark-color
'
);
indexImg
++
;
}
else
{
indexImg
=
1
;
$iNum
.
removeClass
(
'
mark-color
'
)
.
eq
(
indexImg
-
1
)
.
addClass
(
'
mark-color
'
);
$iBox
.
animate
({
left
:
0
},
moveTime
);
}
});
//向左边前进
$
(
'
.to-left1
'
).
click
(
function
(){
indexImg
--
;
if
(
indexImg
!=
0
){
$iBox
.
animate
({
left
:
-
((
indexImg
-
1
)
*
imgSize
)
+
'
px
'
},
moveTime
);
$iNum
.
removeClass
(
'
mark-color
'
)
.
eq
((
indexImg
-
1
))
.
addClass
(
'
mark-color
'
);
}
else
{
indexImg
=
totalImg
;
$iNum
.
removeClass
(
'
mark-color
'
)
.
eq
(
indexImg
-
1
)
.
addClass
(
'
mark-color
'
);
$iBox
.
animate
({
left
:
-
((
indexImg
-
1
)
*
imgSize
)
+
'
px
'
},
moveTime
);
}
});
clc
=
setInterval
(
moveImg
,
setTime
);
});
//图片三
$
(
document
).
ready
(
function
(){
var
$iBox
=
$
(
'
.imgBox2
'
),
$iNum
=
$
(
'
.imgNum2
'
),
//缓存优化
indexImg
=
1
,
//初始下标
totalImg
=
3
,
//图片总数量
imgSize
=
220
,
//图片尺寸 宽度
moveTime
=
1200
,
//切换动画时间
setTime
=
2800
,
//中间暂停时间
clc
=
null
;
function
moveImg
(){
if
(
indexImg
!=
totalImg
){
$iBox
.
animate
({
left
:
-
(
indexImg
*
imgSize
)
+
'
px
'
},
moveTime
);
$iNum
.
removeClass
(
'
mark-color
'
)
.
eq
(
indexImg
)
.
addClass
(
'
mark-color
'
);
indexImg
++
;
}
else
{
indexImg
=
1
;
$iNum
.
removeClass
(
'
mark-color
'
)
.
eq
(
indexImg
-
1
)
.
addClass
(
'
mark-color
'
);
$iBox
.
animate
({
left
:
0
},
moveTime
);
}
}
$iNum
.
hover
(
function
(){
$iBox
.
stop
();
//结束当前动画
clearInterval
(
clc
);
//暂停循环
$iNum
.
removeClass
(
'
mark-color
'
);
$
(
this
).
addClass
(
'
mark-color
'
);
indexImg
=
$
(
this
).
index
();
$iBox
.
animate
({
left
:
-
(
indexImg
*
imgSize
)
+
'
px
'
},
500
);
},
function
(){
clc
=
setInterval
(
moveImg
,
setTime
);
});
//鼠标放上停止动画
$iBox
.
hover
(
function
(){
$
(
'
.control2
'
).
fadeIn
(
200
);
clearInterval
(
clc
);
//暂停循环
},
function
(){
$
(
'
.control2
'
).
hide
();
clc
=
setInterval
(
moveImg
,
setTime
);
});
//显示左右
$
(
'
.control2
'
).
hover
(
function
(){
clearInterval
(
clc
);
$
(
'
.control2
'
).
show
();
// return false;允许传播
});
//向右边前进
$
(
'
.to-right2
'
).
click
(
function
(){
if
(
indexImg
!=
totalImg
){
$iBox
.
animate
({
left
:
-
(
indexImg
*
imgSize
)
+
'
px
'
},
moveTime
);
$iNum
.
removeClass
(
'
mark-color
'
)
.
eq
(
indexImg
)
.
addClass
(
'
mark-color
'
);
indexImg
++
;
}
else
{
indexImg
=
1
;
$iNum
.
removeClass
(
'
mark-color
'
)
.
eq
(
indexImg
-
1
)
.
addClass
(
'
mark-color
'
);
$iBox
.
animate
({
left
:
0
},
moveTime
);
}
});
//向左边前进
$
(
'
.to-left2
'
).
click
(
function
(){
indexImg
--
;
if
(
indexImg
!=
0
){
$iBox
.
animate
({
left
:
-
((
indexImg
-
1
)
*
imgSize
)
+
'
px
'
},
moveTime
);
$iNum
.
removeClass
(
'
mark-color
'
)
.
eq
((
indexImg
-
1
))
.
addClass
(
'
mark-color
'
);
}
else
{
indexImg
=
totalImg
;
$iNum
.
removeClass
(
'
mark-color
'
)
.
eq
(
indexImg
-
1
)
.
addClass
(
'
mark-color
'
);
$iBox
.
animate
({
left
:
-
((
indexImg
-
1
)
*
imgSize
)
+
'
px
'
},
moveTime
);
}
});
clc
=
setInterval
(
moveImg
,
setTime
);
});
arkui/ace_ets_webView/entry/src/main/resources/rawfile/js/main.js
0 → 100644
浏览文件 @
a4d11f40
/**
* 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.
*/
//下拉框
(
function
(){
var
num
=
0
;
$
(
'
[data-toggle=arrowdown]
'
).
hover
(
function
(){
var
_id
=
$
(
this
).
attr
(
'
id
'
);
num
=
_id
.
substring
(
5
,
_id
.
length
);
$
(
this
).
find
(
'
span
'
)
.
removeClass
(
'
run-down
'
)
.
addClass
(
'
run-up
'
);
$
(
'
#nav-box
'
+
num
).
slideDown
(
100
);
},
function
(){
$
(
this
).
find
(
'
span
'
)
.
removeClass
(
'
run-up
'
)
.
addClass
(
'
run-down
'
);
$
(
'
#nav-box
'
+
num
).
hide
();
});
$
(
'
[data-toggle=hidden-box]
'
).
hover
(
function
(){
var
_id
=
$
(
this
).
attr
(
'
id
'
);
num
=
_id
.
substring
(
7
,
_id
.
length
);
$
(
'
#arrow
'
+
num
).
addClass
(
'
nav-hover
'
)
.
find
(
'
span
'
).
removeClass
(
'
run-down
'
)
.
addClass
(
'
run-up
'
);
$
(
this
).
show
();
},
function
(){
$
(
'
#arrow
'
+
num
).
removeClass
(
'
nav-hover
'
)
.
find
(
'
span
'
).
removeClass
(
'
run-up
'
)
.
addClass
(
'
run-down
'
);
setTimeout
(
function
(){
$
(
'
#arrow
'
+
num
).
find
(
'
span
'
).
removeClass
(
'
run-down
'
);
},
500
);
$
(
this
).
slideUp
(
100
);
});
})(
jQuery
);
//search-box
(
function
(){
$
(
'
.search-box
'
).
hover
(
function
(){
$
(
this
).
find
(
'
span
'
)
.
addClass
(
'
down-icon-circle
'
).
css
({
background
:
'
#f50 url(img/arrow-white.png) no-repeat center
'
});
},
function
(){
$
(
this
).
find
(
'
span
'
)
.
removeClass
(
'
down-icon-circle
'
).
css
({
background
:
''
});
});
})(
jQuery
);
//滚动出现固定导航
(
function
(){
$
(
window
).
scroll
(
function
(){
var
scTop
=
$
(
window
).
scrollTop
(),
$scS
=
$
(
'
.scroll-search
'
),
$frS
=
$
(
'
.fix-right-sub
'
),
rW
;
rW
=
(
$
(
window
).
width
()
-
1190
)
/
2
;
scTop
>=
200
?
$scS
.
slideDown
(
200
)
:
$scS
.
slideUp
(
200
);
if
(
scTop
>=
2700
&&
scTop
<
4400
){
$frS
.
css
({
position
:
'
fixed
'
,
top
:
'
-541px
'
,
right
:
rW
,
marginTop
:
''
});
}
else
if
(
scTop
>=
4400
){
$frS
.
css
({
position
:
''
,
marginTop
:
1728
});
}
else
{
$frS
.
css
({
position
:
''
});
}
});
})(
jQuery
);
//sidebar
(
function
(){
var
scTop
=
0
,
beginH
=
138
,
wW
=
$
(
window
).
width
(),
classN
,
num
;
$
(
window
).
scroll
(
function
(){
scTop
=
$
(
window
).
scrollTop
();
beginH
=
138
;
switch
(
scTop
){
case
600
:
beginH
-=
45
;
break
;
case
500
:
beginH
-=
50
;
break
;
case
400
:
beginH
-=
55
;
break
;
case
300
:
beginH
-=
60
;
break
;
case
200
:
beginH
-=
65
;
break
;
default
:
beginH
=
138
;
break
;
}
});
$
(
'
.side-li > li
'
).
hover
(
function
(){
$
(
this
).
find
(
'
h3
'
).
css
({
border
:
'
none
'
})
.
end
().
find
(
'
span
'
).
css
({
color
:
"
#f40
"
});
classN
=
$
(
this
).
attr
(
'
class
'
);
num
=
classN
.
substring
(
2
,
classN
.
length
);
switch
(
scTop
){
case
0
:
if
(
num
>
14
){
beginH
+=
120
}
else
if
(
num
>=
12
){
beginH
+=
41
};
break
;
case
100
:
if
(
num
==
1
){
beginH
-=
27
}
else
if
(
num
==
16
){
beginH
+=
7
};
break
;
case
200
:
num
<
5
?
beginH
-=
60
:
beginH
-=
30
;
break
;
case
300
:
num
<
8
?
beginH
-=
60
:
beginH
-=
40
;
break
;
case
400
:
num
<=
11
?
beginH
-=
50
:
beginH
+=
10
;
break
;
case
500
:
num
<
14
?
beginH
-=
50
:
''
;
break
;
case
600
:
num
<=
16
?
beginH
-=
50
:
''
;
break
;
default
:
beginH
=
138
;
break
;
}
$
(
'
.hiden-box
'
).
show
()
.
css
({
left
:
((
wW
-
1190
)
/
2
+
149
),
top
:
beginH
}).
animate
({
width
:
'
729px
'
},
300
);
$
(
'
.hiden-box > li
'
).
hide
();
$
(
'
#hiden-
'
+
num
).
fadeIn
(
200
);
beginH
=
138
;
},
function
(){
$
(
this
).
find
(
'
h3
'
).
css
({
border
:
''
})
.
end
().
find
(
'
span
'
).
css
({
color
:
""
});
$
(
'
.hiden-box
'
).
hide
().
css
({
width
:
'
0
'
});
});
$
(
'
.hiden-box
'
).
hover
(
function
(){
$
(
'
.s_
'
+
num
).
css
({
border
:
'
1px solid #f40
'
,
borderRight
:
'
1px solid #fff
'
}).
find
(
'
h3
'
).
css
({
border
:
'
none
'
})
.
end
().
find
(
'
span
'
).
css
({
color
:
"
#f40
"
});
$
(
this
).
show
().
css
({
width
:
'
729px
'
});
},
function
(){
$
(
'
.s_
'
+
num
).
css
({
border
:
''
,
borderRight
:
''
}).
find
(
'
h3
'
).
css
({
border
:
''
})
.
end
().
find
(
'
span
'
).
css
({
color
:
""
});
$
(
this
).
animate
({
width
:
0
},
200
).
hide
(
200
);
});
})();
//关二维码
(
function
(){
$
(
'
.close-code
'
).
click
(
function
(){
$
(
'
.two-code
'
).
fadeOut
(
200
);
});
})();
//service
(
function
(){
$
(
'
.service-cell
'
).
hover
(
function
(){
$
(
this
).
children
(
'
.service-i
'
).
find
(
'
img
'
).
animate
({
marginTop
:
'
-10px
'
},
100
);
$
(
this
).
children
(
'
.service-i
'
).
find
(
'
img
'
).
animate
({
marginTop
:
'
6px
'
},
100
);
},
function
(){
return
false
;
});
})();
//product-box
(
function
(){
$
(
'
.product-box
'
).
hover
(
function
(){
$
(
this
).
css
({
zIndex
:
'
3000
'
});
},
function
(){
$
(
this
).
css
({
zIndex
:
''
});
});
})();
//product-show
(
function
(){
$
(
'
.product-box
'
).
hover
(
function
(){
$
(
this
).
find
(
'
.share-weitao
'
).
fadeIn
(
200
);
},
function
(){
$
(
this
).
find
(
'
.share-weitao
'
).
fadeOut
(
200
);
});
})();
//dynamic
(
function
(){
$
(
'
.dynamic
'
).
hover
(
function
(){
$
(
this
).
find
(
'
.follow
'
).
fadeIn
(
200
);
},
function
(){
$
(
this
).
find
(
'
.follow
'
).
fadeOut
(
200
);
})
})();
//more-btn
(
function
(){
var
flag
=
1
;
$
(
'
.more-btn
'
).
click
(
function
(){
if
(
flag
){
$
(
this
).
css
({
background
:
'
#f40 url(img/up.png) no-repeat 90% center
'
});
$
(
'
.sub-nav
'
).
css
({
height
:
'
145px
'
});
flag
=
0
;
}
else
{
$
(
'
.sub-nav
'
).
css
({
height
:
''
});
$
(
this
).
css
({
background
:
''
});
flag
=
1
;
}
});
})();
/**
* backToTop1
*/
$
(
document
).
ready
(
function
(){
$
(
window
).
scroll
(
function
()
{
//滚动时触发
var
top
=
$
(
document
).
scrollTop
(),
//获取滚动条到顶部的垂直高度
height
=
$
(
window
).
height
();
//获得可视浏览器的高度
if
(
top
>
100
){
$
(
"
#backToTop1
"
).
show
(
200
,
function
(){
$
(
"
#backToTop1
"
).
css
({
top
:
height
+
top
-
100
});
});
}
});
/*点击回到顶部*/
$
(
'
#backToTop-up
'
).
click
(
function
(){
$
(
'
html, body
'
).
animate
({
scrollTop
:
0
},
500
);
});
/*点击到底部*/
$
(
'
#backToTop-down
'
).
click
(
function
(){
$
(
'
html, body
'
).
animate
({
scrollTop
:
$
(
document
).
height
()
},
500
);
});
});
//my-card
(
function
(){
$
(
'
.arrow-right
'
).
click
(
function
(){
$
(
'
.cards-info ul
'
).
animate
({
marginLeft
:
'
-205px
'
},
500
);
});
$
(
'
.arrow-left
'
).
click
(
function
(){
$
(
'
.cards-info ul
'
).
animate
({
marginLeft
:
'
0
'
},
500
);
});
})();
//msg-close
(
function
(){
$
(
'
.close-msg
'
).
click
(
function
(){
$
(
'
.read-info
'
).
css
({
textAlign
:
'
center
'
}).
html
(
'
还没有新的消息...
'
);
});
})();
//tab-nav
(
function
(){
$
(
'
.li-nav
'
).
hover
(
function
(){
var
_id
,
num
;
_id
=
$
(
this
).
attr
(
'
id
'
);
num
=
_id
.
substring
(
3
,
_id
.
length
);
$
(
'
.li-nav
'
).
removeClass
(
'
li-nav-hover
'
);
$
(
'
.hiddenBox
'
).
hide
();
$
(
'
#box-
'
+
num
).
fadeIn
(
200
);
},
function
(){
$
(
this
).
addClass
(
'
li-nav-hover
'
);
});
})();
//service-cell
(
function
(){
$
(
'
.service-cell[id]
'
).
hover
(
function
(){
var
_id
,
num
;
_id
=
$
(
this
).
attr
(
'
id
'
);
num
=
_id
.
substring
(
8
,
_id
.
length
);
$
(
'
.service-box
'
).
css
({
bottom
:
-
50
}).
hide
();
$
(
'
#service-box-
'
+
num
).
show
().
animate
({
bottom
:
'
0
'
},
200
);
$
(
'
.service-cell[id]
'
).
css
({
borderBottomColor
:
''
});
$
(
this
).
css
({
borderBottomColor
:
'
#fff
'
});
},
function
(){
});
})();
//close-service
(
function
(){
$
(
'
.service-head > .fa-times
'
).
click
(
function
(){
$
(
'
.service-box
'
).
fadeOut
(
200
);
});
})();
//hidden-title
(
function
(){
$
(
'
.hidden-title > a
'
).
hover
(
function
(){
$
(
this
).
next
().
css
({
color
:
'
#f40
'
});
},
function
(){
$
(
this
).
next
().
css
({
color
:
''
});
});
})();
arkui/ace_ets_webView/entry/src/main/resources/rawfile/js/tab_qiehuc.js
0 → 100644
浏览文件 @
a4d11f40
function
setTab
(
m
,
n
){
var
tli
=
document
.
getElementById
(
"
menu
"
+
m
).
getElementsByTagName
(
"
li
"
);
var
mli
=
document
.
getElementById
(
"
main
"
+
m
).
getElementsByTagName
(
"
ul
"
);
for
(
i
=
0
;
i
<
tli
.
length
;
i
++
){
tli
[
i
].
className
=
i
==
n
?
"
hover
"
:
"
outer
"
;
mli
[
i
].
style
.
display
=
i
==
n
?
"
block
"
:
"
none
"
;
}
}
\ No newline at end of file
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录