|
|
@@ -154,14 +154,14 @@ function fullscreen() {
|
|
|
' </span>' +
|
|
|
' </div>' +
|
|
|
' </div>' +
|
|
|
- ' <div class="btn-group" style="float:right;">' +
|
|
|
- ' <button type="button" class="btn btn-info" onclick="doAction(\'start\')"><i class="icon icon-play-circle icon-2x"></i></button>' +
|
|
|
- ' <button type="button" class="btn btn-info" onclick="doAction(\'stop\')"><i class="icon icon-pause icon-2x"></i></button>' +
|
|
|
- ' <button type="button" class="btn btn-info" onclick="doAction(\'fast\')"><i class="icon icon-forward icon-2x"></i><span id=\"full_fast_info\"></span></button>' +
|
|
|
- ' <button type="button" class="btn btn-info" onclick="doAction(\'slow\')"><span id=\"full_slow_info\"></span><i class="icon icon-backward icon-2x"></i></button>' +
|
|
|
- ' <button type="button" class="btn btn-danger " style="width:51px;height:42px" id="full_video_btn_start" onclick="doAction(\'video_start\')"><img style="width:30px" src="/images/movie.png"></img></i></button>' +
|
|
|
- ' <button type="button" class="btn btn-danger hidden" style="width:51px;height:42px" id="full_video_btn_stop" onclick="doAction(\'video_stop\')"><i class="icon icon-stop icon-2x"></i></button>' +
|
|
|
- ' <button type="button" class="btn btn-success" onclick="doAction(\'screenshot\')"><i class="icon icon-camera icon-2x"></i></button>' +
|
|
|
+ ' <div class="btn-group1" style="float:right;">' +
|
|
|
+ ' <button type="button" class="btn btn-info1" style="width:41px;height:41px" onclick="doAction(\'start\')"><i class="icon icon-play-circle icon-2x"></i></button>' +
|
|
|
+ ' <button type="button" class="btn btn-info1" style="width:41px;height:41px" onclick="doAction(\'stop\')"><i class="icon icon-pause icon-2x"></i></button>' +
|
|
|
+ ' <button type="button" class="btn btn-info1" style="width:41px;height:41px" onclick="doAction(\'fast\')"><i class="icon icon-forward icon-2x"></i><span id=\"full_fast_info\"></span></button>' +
|
|
|
+ ' <button type="button" class="btn btn-info1" style="width:41px;height:41px" onclick="doAction(\'slow\')"><span id=\"full_slow_info\"></span><i class="icon icon-backward icon-2x"></i></button>' +
|
|
|
+ ' <button type="button" class="btn btn-info1" style="width:41px;height:41px" style="width:51px;height:42px" id="full_video_btn_start" onclick="doAction(\'video_start\')"><img id="full_video_btn_start_img" style="width:30px" src="/images/movie.png"></img></i></button>' +
|
|
|
+ ' <button type="button" class="btn btn-info1 hidden" style="width:41px;height:41px" id="full_video_btn_stop" onclick="doAction(\'video_stop\')"><i class="icon icon-stop icon-2x"></i></button>' +
|
|
|
+ ' <button type="button" class="btn btn-info1" style="width:41px;height:41px" onclick="doAction(\'screenshot\')"><i class="icon icon-camera icon-2x"></i></button>' +
|
|
|
' </div>' +
|
|
|
' </div>';
|
|
|
|
|
|
@@ -184,6 +184,13 @@ function fullscreen() {
|
|
|
setVideoProcess(slideEvt.value);
|
|
|
});
|
|
|
|
|
|
+ $("#full_video_btn_start").mouseover(function(){
|
|
|
+ $("#full_video_btn_start_img").attr("src","/images/movie.png");
|
|
|
+ });
|
|
|
+ $("#full_video_btn_start").mouseout(function(){
|
|
|
+ $("#full_video_btn_start_img").attr("src","/images/video.png");
|
|
|
+ });
|
|
|
+
|
|
|
$("#full_ex1").on("change", function(sender) {
|
|
|
var width = $("#full_ex1").siblings(".slider").children(".slider-track").children(".slider-selection").width();
|
|
|
var total_width = $("#full_ex1").siblings(".slider").children(".slider-track").width();
|
|
|
@@ -682,7 +689,7 @@ function resetUserImgInfo() {
|
|
|
var str = '<a id="person_img" href="../../images/img4.jpg" class="lightbox-toggle">' +
|
|
|
'<img src="../../images/img4.jpg" class="img-thumbnail" style="width:50px;height:50px;margin-top:-10px;"></a>' +
|
|
|
'<label id="checked_person"></label>' +
|
|
|
- '(次数:<a href="javascript:void(0)" onclick="showCheckDetailCount()"><label id="checked_count"></label></a>)';
|
|
|
+ '(次数:<a href="javascript:void(0)" onclick="showCheckDetailCount()"><label id="checked_count"></label></a>)';
|
|
|
$("#user_img_container").html(str);
|
|
|
}
|
|
|
|