Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
W
wechatapp.shangjiadao.com
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wangxuelai
wechatapp.shangjiadao.com
Commits
b6a3c04a
Commit
b6a3c04a
authored
Apr 21, 2020
by
lvtz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix
parent
dce7cb11
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
57 additions
and
2 deletions
+57
-2
onlineclassroomplay.wxml
src/pages/websiteindex/onlineclassroomplay.wxml
+7
-1
onlineclassroomplay.wxss
src/pages/websiteindex/onlineclassroomplay.wxss
+50
-1
No files found.
src/pages/websiteindex/onlineclassroomplay.wxml
View file @
b6a3c04a
...
...
@@ -283,7 +283,13 @@
</view>
</view>
</view>
<image class="icon-status status-video" wx:if="{{item.isAction && (item.content.type==2 || item.content.type==3)}}" src="{{imageRoot}}2c/websiteindex/onlinecourse/video_play.png?{{imageVersion}}"/>
<!-- <image class="icon-status status-video" wx:if="{{item.isAction && (item.content.type==2 || item.content.type==3)}}" src="{{imageRoot}}2c/websiteindex/onlinecourse/video_play.png?{{imageVersion}}"/> -->
<view class="icon-status play_box" wx:if="{{item.isAction && (item.content.type==2 || item.content.type==3)}}">
<view class="playing-bar playing-bar1"></view>
<view class="playing-bar playing-bar2"></view>
<view class="playing-bar playing-bar3"></view>
<view class="playing-bar playing-bar4"></view>
</view>
<image class="icon-status status-pic" wx:if="{{item.isAction && (item.content.type==1 || item.content.type==4 || item.content.type==5)}}" src="{{imageRoot}}2c/websiteindex/onlinecourse/pic_play.png?{{imageVersion}}"/>
</view>
</scroll-view>
...
...
src/pages/websiteindex/onlineclassroomplay.wxss
View file @
b6a3c04a
...
...
@@ -1277,4 +1277,53 @@
}
.rich-text-box img{
max-width: 100%;
}
\ No newline at end of file
}
/* 音视频播放css动效 */
.play_box{
width: 34rpx;
height: 35rpx;
display: flex;
justify-content: space-between;
align-items: flex-end;
}
.play_box .playing-bar{
background: #FB7A28;
width: 6rpx;
height: 100%;
border-radius: 3rpx 3rpx 0 0;
animation: up-and-down 1.3s ease infinite alternate;
}
.play_box .playing-bar1{
height: 50%;
}
.play_box .playing-bar2{
height: 80%;
animation-delay: -2.4s;
}
.play_box .playing-bar3{
height: 100%;
animation-delay: -3.7s;
}
.play_box .playing-bar4{
height: 60%;
animation-delay: -5s;
}
@-webkit-keyframes up-and-down {
10% {
height: 50%;
}
30% {
height: 100%;
}
60% {
height: 40%;
}
80% {
height: 75%;
}
100% {
height: 30%;
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment