You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
680 B
29 lines
680 B
6 years ago
|
package com.fr.plugin;
|
||
|
|
||
|
import com.fr.decision.config.AppearanceConfig;
|
||
|
import com.fr.web.struct.Component;
|
||
|
import com.fr.web.struct.category.ScriptPath;
|
||
|
import com.fr.web.struct.category.StylePath;
|
||
|
import com.fr.web.struct.Filter;
|
||
|
|
||
|
/**
|
||
|
* Created by Zed on 2018/10/12.
|
||
|
*/
|
||
|
public class CarouselComponent extends Component {
|
||
|
|
||
|
public static final CarouselComponent KEY = new CarouselComponent();
|
||
|
|
||
|
private CarouselComponent() {
|
||
|
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public ScriptPath script() {
|
||
|
return ScriptPath.build("com/fr/plugin/web/carousel.js");
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public StylePath style() {
|
||
|
return StylePath.build("com/fr/plugin/web/carousel.css");
|
||
|
}
|
||
|
}
|