Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
YOHOBUYWAP
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
王水玲
9 years ago
Commit
5c04a0bbb86703d3ceb81a3bdde4d0e33dc3e220
1 parent
0e5cd708
新潮教室默认头像bug修改
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
3 deletions
static/js/guang/star-classroom.js
static/js/guang/star-classroom.js
View file @
5c04a0b
...
...
@@ -16,6 +16,15 @@ lazyLoad($('img.lazy'));
$
(
'body'
).
addClass
(
'star-class-body'
);
function
loadIntimacyAvatar
(
myImage
,
src
)
{
var
newSrc
=
''
;
myImage
.
onload
=
function
()
{
newSrc
=
'background-image:url('
+
src
+
')'
;
};
return
newSrc
;
}
// 日历弹出框显示及粉丝排行榜数据组装
function
intimacyData
(
data
)
{
var
$ul
=
$
(
'.fan-charts-cont'
),
...
...
@@ -52,9 +61,7 @@ function intimacyData(data) {
if
(
data
.
fanCharts
[
i
].
img
!==
''
&&
data
.
fanCharts
[
i
].
img
!==
null
)
{
myImage
.
src
=
data
.
fanCharts
[
i
].
img
;
myImage
.
onload
=
function
()
{
bgStyle
=
'background-image:url('
+
data
.
fanCharts
[
i
].
img
+
')'
;
};
bgStyle
=
loadIntimacyAvatar
(
myImage
,
data
.
fanCharts
[
i
].
img
);
}
else
{
bgStyle
=
''
;
}
...
...
Please
register
or
login
to post a comment