current fix update
This commit is contained in:
parent
4fd89c4fc3
commit
1d7275fcd7
|
@ -19,7 +19,7 @@ function Footer(){
|
||||||
|
|
||||||
return(
|
return(
|
||||||
<div>
|
<div>
|
||||||
<div style={{height:"483px"}}></div>
|
<div style={{height:"810px"}}></div>
|
||||||
<div className="newFooter edu-txt-center">
|
<div className="newFooter edu-txt-center">
|
||||||
{value && showhtml(value)}
|
{value && showhtml(value)}
|
||||||
{/* <div className="footerInfos">
|
{/* <div className="footerInfos">
|
||||||
|
|
|
@ -3,7 +3,6 @@ ul,ol,dl{
|
||||||
}
|
}
|
||||||
.newMain{
|
.newMain{
|
||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
padding-bottom: 810px;
|
|
||||||
}
|
}
|
||||||
.color-black{
|
.color-black{
|
||||||
color: #333;
|
color: #333;
|
||||||
|
|
|
@ -13,8 +13,10 @@ function Cloud({data}) {
|
||||||
var div = new Js2WordCloud(document.getElementById('cloud'))
|
var div = new Js2WordCloud(document.getElementById('cloud'))
|
||||||
let textList= d.categories;
|
let textList= d.categories;
|
||||||
let cyList=[]
|
let cyList=[]
|
||||||
for(let i=0;i<textList.length;i++){
|
if(textList && textList.length > 0){
|
||||||
cyList.push([textList[i],textList.length-i])
|
for(let i=0;i<textList.length;i++){
|
||||||
|
cyList.push([textList[i],textList.length-i]);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
div.setOption({
|
div.setOption({
|
||||||
backgroundColor:'transparent',
|
backgroundColor:'transparent',
|
||||||
|
|
Loading…
Reference in New Issue