作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我用 jquery、js、xml、html5 制作了一个旋转木马,但我想将其设置在 magento 的页面上,但是我需要将 js 文件和 xml 文件放在哪里?
谢谢
最佳答案
在主 js 文件夹中添加所有 js
magento_application\js\yourfolder // add all js related to your carousel
在以下位置添加 carousel.css 的 css 文件
magento_application\skin\frontend\base\default\css\yourfolder
在上面的文件夹中添加 carousel.css
将您的 xml 添加到布局基础或自定义包或自定义主题
如下所示
magento_application\app\design\frontend\base\default\layout\yourfolder\yourmodule.xml
在自定义页面或layout.xml的head部分添加所有js和css以在每个页面中调用
对于如下自定义页面,您可以添加
品牌
<reference name="head">
<action method="addJs"><script>yourfolder/carousel.js</script></action>
<action method="addJs"><script>yourfolder/os.js</script></action>
<action method="addJs"><script>yourfolder/application.js</script></action>
<action method="addCss"><stylesheet>css/inic/carousel.css</stylesheet></action>
</reference>
希望这一定会对您有所帮助。
关于javascript - 如何在magento中添加Html5轮播?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18978897/
我是一名优秀的程序员,十分优秀!