开发者

Running Galleria jquery plugin on cakephp

开发者 https://www.devze.com 2023-03-08 23:15 出处:网络
I tried \"Galleria\" as a standalone application and it works perfectly fine .. 开发者_开发百科 however in order to make it work with Cakephp what are the changes that i need to make ?

I tried "Galleria" as a standalone application and it works perfectly fine .. 开发者_开发百科 however in order to make it work with Cakephp what are the changes that i need to make ?

I have tried changing the path of js and css files to absolute path .. it didnt help ..

// Load the classic theme Galleria.loadTheme('http://localhost/agm2/js/galleria.classic.js');

and in galleria.classic.js .. changed the following line css: 'http://localhost/agm2/css/galleria.classic.css',


This is what I did before it finally worked and I of course violated cakephp convensions:

I put all the javascript files (jquery, galleria, galleria.classic) in the cakephp js folder. Additionally, I had to put the images (classic-map.png, classic-loader) and the css file (galleria.classic.css) in the cakephp js folder before it finally worked.

But under normal circumstances, the galleria css file should be in the css folder, the images in the img folder and the galleria.classic.js should be able to locate them and this is the problem we have.

0

精彩评论

暂无评论...
验证码 换一张
取 消