如何在一定时间后显示div容器,比如10秒。另外,我使用的是CLASS
而没有使用ID
。
我已经尝试过:
$(document).ready(function() {
$(".contentPost").delay(5000).fadeIn(500);
});
和CSS:
.contentPost {
display: none;
}
然而,这对我来说真的不适合......还有其他想法吗?
答案 0 :(得分:0)
使用public class NewsDetails extends Activity
{
static String url;
WebView view;
TextView info;
static String data;
String address;
Bundle bundle;
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.detailed_news_layout);
bundle = getIntent().getExtras();
url = bundle.getString("Link");
view = (WebView) findViewById(R.id.webview);
new parseText().execute();
}
setTimeout
答案 1 :(得分:0)
您也可以使用普通的javascript。
setTimeout(function() {
document.querySelector('.contentPost').className = "";
}, 5000)