import React, { Component } from 'react'; import { getImageUrl} from 'educoder'; import {Tooltip} from 'antd'; import '../../tpm/TPMIndex.css'; const $ = window.$; const poiindex=0; $(window).resize(function(){ rightSlider(); }); $(window).scroll(function(){ if($(".gotop").length>0){ if($(document).scrollTop()>0){ $(".-task-sidebar .gotop").show(); $(".gotop").click(function(){ $("html,body").scrollTop(0); }); } if($(document).scrollTop()==0){ $(".-task-sidebar .gotop").hide(); } } }); function rightSlider(){ var poi=parseInt((parseInt($(window).width())- 1200 )/2)-81; // console.log(parseInt($(window).width())+" "+poi); if(poi>0){ $(".-task-sidebar").css("right",poi); }else{ $(".-task-sidebar").css("right","0px"); } $(".-task-sidebar").show(); } function _initSider() { var $descSide = $("
").appendTo("body"); $(".-task-sidebar>div").hover(function(){ //移入显示二维码 if($(this).hasClass("scan")){ $(".scan_ewm").show().css({right:"75px",opacity:0}).stop().animate({ right:"45px",opacity:1 }) return; } var $tool = $(this).attr("tooltips"); $descSide.html($tool+"
"); $descSide.data('_dom', this) $descSide.show().css({ left:$(this).offset().left - $descSide.width()-30, opacity:0, top:$(this).offset().top }).stop().animate({ left:$(this).offset().left - $descSide.width()-5, opacity:1 },400); },function(){ if($(this).hasClass("scan")){ $(".scan_ewm").stop().animate({right:"75px",opacity:0},200).hide(); } $descSide.stop().animate({ left:$(this).offset().left - $descSide.width()-30, opacity:0 },200).hide(); }); rightSlider(); $(window).scroll(function() { if ($descSide.height()) { var hoverIcon = $descSide.data('_dom') $descSide.css('top', $(hoverIcon).offset().top) } }) } class SiderBars extends Component { constructor(props) { super(props) } componentDidMount() { _initSider() } render() { // console.log("SiderBar"); // console.log(this.props); var mypath= this.props&&this.props.match&&this.props.match.path; let{myvisible,Datacount,animateStyle}=this.props; return (
0?"-task-sidebar mystask-sidebars":"-task-sidebar mystask-sidebarss"} > {this.props.mygetHelmetapi&&this.props.mygetHelmetapi.main_site===true?
{ mypath&&mypath==="/question"?
this.props.showDrawer()} > { Datacount&&Datacount>0?
{Datacount}
:"" }

试题库

:"" }

微信扫一扫

关注公众号

}>
:""}
); } } export default SiderBars;