Why is CSS3 animation not working on my ASP.net website

I have an ASP.net site where I have the following ...

HTML:

<div style="width: 99%; margin: 0; padding: 0; text-align: left; overflow: hidden;">
            <div id="sample3" lang="is" class="sample3">

    <figure>
        <img src="../theImages/imgPra.png" width="160" height="160" alt="Specialty Profile" />
        <figcaption>Specialty Profile</figcaption>
    </figure>

<!--end sample3--></div>
        </div>

      

CSS

.sample3 figure {
    width: 200px;
    height: 200px;
    overflow: hidden;
    position: relative;
    background: url('../theImages/preview4.jpg') fixed no-repeat;
}

.sample3 figcaption {
        position: absolute;
    display: block;
    width: 350px;
    height: 50px;
    left: 110px;
    bottom: -110px;
    text-align: center;
    color: #fff;
    background-color: rgba(26,54,59,0.8);
    border: 3px solid rgba(62,116,126,0.6);
    line-height: 50px;
    -moz-box-shadow: rgba(0,0,0,.5) 0 2px 8px;
    -webkit-box-shadow: rgba(0,0,0,.5) 0 2px 8px;
    box-shadow: rgba(0,0,0,.5) 0 2px 8px;
    -moz-transform:rotate(-45deg);
    -webkit-transform:rotate(-45deg);
    -o-transform:rotate(-45deg);
    transform:rotate(-45deg);
    -moz-transition: bottom .5s ease-out, left .5s ease-out;
    -webkit-transition: bottom .5s ease-out, left .5s ease-out;
    -o-transition: bottom .5s ease-out, left .5s ease-out;
    transition: bottom .5s ease-out, left .5s ease-out;
}

.sample3 figure:hover figcaption {
    left: -20px;
    bottom: 20px;
}

      

JSFiddle: http://jsfiddle.net/vas1watw/

It works fine on a regular web page, but when I add it to my .net site, the ribbon is displayed without animation.

How can I solve the problem.

debug mode:

enter image description here

+3


source to share


3 answers


All the code (HTML / CSS) was placed correctly on my site. IE just took a whole day to refresh the page. I had to reset the IIS site, which forcefully updated it and worked afterwards.



0


source


You are using sitemaster.if file using it. css on sitemaster



+2


source


Look at the property of the ClientIDMode

directive @Page

. ASP.NET tends to automatically configure client generated IDs, which causes your CSS to process the handle #sample3

, as that ID won't exist in HTML unless this property is set to a value Static

. More on ClientIDMode on MSDN .

+1


source







All Articles