我使用ScrollToFixed插件在滚动条上创建固定div。
这就是我使用它的方式:
$(document).ready(function() {
$('.sticky').scrollToFixed({marginTop: $('.site-header').outerHeight()});
});
问题是outerHeight
使用jQuery动态更改,我想在解雇outerHeight
之前重新计算新scrollToFixed
。
我怎样才能做到这一点?
答案 0 :(得分:0)
不确定这是不是你的意思,但先设置css属性,然后应用scrollToFixed:
class modifyCar extends AsyncTask<Car, Integer, ArrayList<Evento>> {
protected void onPreExecute()
{
}
protected ArrayList<Evento> doInBackground(Car... newCarAsync)
{
//The rest of the code using newCarAsync
}
protected void onProgressUpdate()
{
}
protected void onPostExecute()
{
}
}