Merge pull request 'Bug577-JiangXueQin' (#163) from Bug577-JiangXueQin into Alpha-snapshot20240618

Reviewed-on: #163
Bug578-ChenChen
mrlan 2024-08-27 07:39:25 +08:00
commit 98027158b5
2 changed files with 16 additions and 6 deletions

View File

@ -43,6 +43,17 @@
white-space: pre-wrap; white-space: pre-wrap;
} }
.arrow {
padding: 0;
font-size: 20px;
line-height: 21px;
display: inline-block;
}
.arrow:hover {
cursor: pointer;
}
</style> </style>
</head> </head>
<body> <body>
@ -252,8 +263,6 @@
} }
}); });
} }
function update(today_article){ function update(today_article){
$('#user_level').html(today_article['user_level']); $('#user_level').html(today_article['user_level']);
$('#text_level').html(today_article["text_level"]); $('#text_level').html(today_article["text_level"]);
@ -269,7 +278,6 @@
document.querySelector('#user_level').classList.add('mark'); // do the same thing for user difficulty level document.querySelector('#user_level').classList.add('mark'); // do the same thing for user difficulty level
setTimeout(() => {document.querySelector('#user_level').classList.remove('mark');}, 2000); setTimeout(() => {document.querySelector('#user_level').classList.remove('mark');}, 2000);
} }
<!-- 检查是否存在上一篇或下一篇,不存在设上一篇按钮为灰色-->
function check_pre(visited_articles){ function check_pre(visited_articles){
if((visited_articles=='')||(visited_articles['index']<=0)){ if((visited_articles=='')||(visited_articles['index']<=0)){
$('#load_pre_article').addClass('gray-background'); // 设置为灰色 $('#load_pre_article').addClass('gray-background'); // 设置为灰色

View File

@ -46,5 +46,7 @@
{% endfor %} {% endfor %}
{% endif %} {% endif %}
</div> </div>
<script>window.history.replaceState(null, null, window.location.href);
</script>
</body> </body>
</html> </html>