无法解决PIE.htc的路径

时间:2012-02-14 17:18:01

标签: css internet-explorer grails css3pie

我正在尝试将css3pie与Grails应用程序集成。根据{{​​3}},我需要做的就是:

  • 将PIE.htc文件放在服务器上的某个位置
  • 将以下内容添加到每个相关的CSS规则behavior: url(path/to/PIE.htc);

为了简化计算PIE.htc的路径,我将文件放在web-app/js/PIE.htc中。然后我定义了以下URL映射

"/PIE.htc"(controller: 'home', action: 'css3pie')

由行动处理:

class HomeController implements ApplicationContextAware {

    private ResourceLoader resourceLoader

    void setApplicationContext(ApplicationContext applicationContext) {
        this.resourceLoader = applicationContext
    }

    def css3pie() {
        log.debug "css3pie HTC file requested"
        Resource pieHTC = resourceLoader.getResource('/js/PIE.htc')
        response.contentType = 'text/x-component'
        response.outputStream << pieHTC.file.text
        response.outputStream.flush()
    }
}

如果您导航到the instructions文件已投放,那么所有内容都会正常运行。然后我将behavior属性添加到一些CSS规则中,以查看它是否正常工作,例如。

.roundBottomLeft {
    border-bottom-left-radius: 10px;
    -moz-border-radius-bottomleft: 10px;
    behavior: url(/PIE.htc);
}

.roundBottomRight {
    border-bottom-right-radius: 10px;
    -moz-border-radius-bottomright: 10px;
    behavior: url(/PIE.htc);
}

这应围绕菜单的右下角和左下角,但如果您在IE8中查看http://summer-festivals.cloudfoundry.com/PIE.htc,则可以看到它无效。

我似乎在解析PIE.htc文件的路径时出现问题,因为我在上面的css3pie操作中设置了一个断点,但断点从未被击中。为什么PIE.htc的路径无法解决。

2 个答案:

答案 0 :(得分:1)

根据文档,PIE只识别速记样式。因此,您需要使用border-radius和每个角的简写值,而不是单独的border-x-y-radius属性。

http://css3pie.com/documentation/known-issues/#shorthand

http://css3pie.com/documentation/supported-css3-features/#border-radius

答案 1 :(得分:1)

试试这个,我刚刚修改了你的代码:

<强> URLMappings.groovy

class UrlMappings {
    static mappings = {
        "/$controller/$action?/$id?"{
            constraints {
                // apply constraints here
            }
        }
        "/"(controller:'home')
        "500"(view:'/error')
        "403"(view:'/login/denied')
        "/static/PIE.htc"(controller: 'home',action: 'css3pie') // <== see here
    }
}

<强> HomeController.groovy

import grails.plugins.springsecurity.Secured
import org.springframework.core.io.Resource

@Secured("IS_AUTHENTICATED_FULLY")
class HomeController {

    def grailsApplication

    def index = { }

    def css3pie() {
        Resource pieHTC = grailsApplication.mainContext.getResource('css/PIE.htc') // <== see here
        response.contentType = 'text/x-component'
        response.outputStream << pieHTC.file.text
        response.outputStream.flush()
    }
}