使用自定义图标 elfinder 更改文件夹图标 jquery
Change folder icon with custom icon elfinder jquery
我的根目录中有 3 个文件夹,我想更改根目录中每个文件夹的图标。我尝试使用 tmbPath
和 tmbURL
但它没有替换图标。
这是代码:
$options = array(
'roots' => [
[
'driver' => 'Folder 1',
'alias' => 'test',
'filesystem' => $filesystem,
'URL' => $url_to_folder,
'tmbPath'=> '/images',
'tmbURL' => site_url().'/images',
],
[
'driver' => 'Folder 2',
'alias' => 'test-',
'filesystem' => $filesystem2,
'URL' => $url_to_folder2,
'tmbPath'=> '/images',
'tmbURL' => site_url().'/images',
],
[
'driver' => 'Folder 3',
'alias' => 'testing',
'filesystem' => $filesystem3,
'URL' => $url_to_folder3,
'tmbPath'=> '/images',
'tmbURL' => site_url().'/images',
]
]
);
我为此进行了研发,但对 me.Can 没有任何帮助,任何人都可以帮助我解决我的错误。这对我会有很大的帮助。
提前致谢。
最后我找到了一个修复程序来让它工作并张贴在这里以防有人遇到同样的情况。我为标题中的所有文件夹添加了一个标识符,并使用 css 我更改了图像。这是代码:
$options = array(
'roots' => [
[
'driver' => 'Folder 1_root1',
'alias' => 'test',
'filesystem' => $filesystem,
'URL' => $url_to_folder,
'tmbPath'=> '/images',
'tmbURL' => site_url().'/images',
],
[
'driver' => 'Folder 2_root2',
'alias' => 'test-',
'filesystem' => $filesystem2,
'URL' => $url_to_folder2,
'tmbPath'=> '/images',
'tmbURL' => site_url().'/images',
],
[
'driver' => 'Folder 3_root3',
'alias' => 'testing',
'filesystem' => $filesystem3,
'URL' => $url_to_folder3,
'tmbPath'=> '/images',
'tmbURL' => site_url().'/images',
]
]
);
并使用 css 如下:
.elfinder-navbar-root[title*="_root1"] .elfinder-navbar-icon {
background-image: url(../images/root1.png) !important;
background: url(../images/root1.png) 0 0 no-repeat !important;
background-size: contain !important;
}
.elfinder-navbar-root[title*="_root2"] .elfinder-navbar-icon {
background-image: url(../images/root2.png) !important;
background: url(../images/root2.png) 0 0 no-repeat !important;
background-size: contain !important;
}
.elfinder-navbar-root[title*="_root3"] .elfinder-navbar-icon {
background-image: url(../images/root3.png) !important;
background: url(../images/root3.png) 0 0 no-repeat !important;
background-size: contain !important;
}
这个技巧满足了我的要求。
我的根目录中有 3 个文件夹,我想更改根目录中每个文件夹的图标。我尝试使用 tmbPath
和 tmbURL
但它没有替换图标。
这是代码:
$options = array(
'roots' => [
[
'driver' => 'Folder 1',
'alias' => 'test',
'filesystem' => $filesystem,
'URL' => $url_to_folder,
'tmbPath'=> '/images',
'tmbURL' => site_url().'/images',
],
[
'driver' => 'Folder 2',
'alias' => 'test-',
'filesystem' => $filesystem2,
'URL' => $url_to_folder2,
'tmbPath'=> '/images',
'tmbURL' => site_url().'/images',
],
[
'driver' => 'Folder 3',
'alias' => 'testing',
'filesystem' => $filesystem3,
'URL' => $url_to_folder3,
'tmbPath'=> '/images',
'tmbURL' => site_url().'/images',
]
]
);
我为此进行了研发,但对 me.Can 没有任何帮助,任何人都可以帮助我解决我的错误。这对我会有很大的帮助。 提前致谢。
最后我找到了一个修复程序来让它工作并张贴在这里以防有人遇到同样的情况。我为标题中的所有文件夹添加了一个标识符,并使用 css 我更改了图像。这是代码:
$options = array(
'roots' => [
[
'driver' => 'Folder 1_root1',
'alias' => 'test',
'filesystem' => $filesystem,
'URL' => $url_to_folder,
'tmbPath'=> '/images',
'tmbURL' => site_url().'/images',
],
[
'driver' => 'Folder 2_root2',
'alias' => 'test-',
'filesystem' => $filesystem2,
'URL' => $url_to_folder2,
'tmbPath'=> '/images',
'tmbURL' => site_url().'/images',
],
[
'driver' => 'Folder 3_root3',
'alias' => 'testing',
'filesystem' => $filesystem3,
'URL' => $url_to_folder3,
'tmbPath'=> '/images',
'tmbURL' => site_url().'/images',
]
]
);
并使用 css 如下:
.elfinder-navbar-root[title*="_root1"] .elfinder-navbar-icon {
background-image: url(../images/root1.png) !important;
background: url(../images/root1.png) 0 0 no-repeat !important;
background-size: contain !important;
}
.elfinder-navbar-root[title*="_root2"] .elfinder-navbar-icon {
background-image: url(../images/root2.png) !important;
background: url(../images/root2.png) 0 0 no-repeat !important;
background-size: contain !important;
}
.elfinder-navbar-root[title*="_root3"] .elfinder-navbar-icon {
background-image: url(../images/root3.png) !important;
background: url(../images/root3.png) 0 0 no-repeat !important;
background-size: contain !important;
}
这个技巧满足了我的要求。