动画效果很好,但是代码同时对所有具有相似类的元素进行动画处理(当我们达到第一个元素的偏移值时)
所以我给每个h2,h3标题赋予不同的类,然后使用jquery对其进行动画处理
public function update(Request $request, $provider, $id)
{
if (Setting::get('demo_mode', 0) == 1) {
return back()->with('flash_error', 'Disabled for demo purposes! Please contact us at info@appoets.com');
}
try {
$Document = ProviderDocument::find($id);
$Document->status = 'ACTIVE';
$Document->expires_at = $request['expires_at'];
$Document->save();
return redirect()->route('admin.provider.document.index', $provider)->with('flash_success',
'Provider document has been approved.');
} catch (ModelNotFoundException $e) {
return redirect()->route('admin.provider.document.index', $provider)->with('flash_error',
'Provider not found!');
}
}
尽管仅使用一个功能,我们能否仅在其各自的滚动上为每个h3元素设置动画?