redhat2
پنج شنبه 12 اردیبهشت 1392, 18:48 عصر
سلام به دوستان ، میخواستم یه سوال بپرسم ، من این dropdown که در زیر هست را طراحی کرد و همانطور هم که تویه css اون ددیه می شه ، tranistion براش طراحی کردم ولی این transtion در Chrome درست کار میکنه ولی تویه firefox کار نمیکنه . مشکلش چیه :
/*
Document : stylesheet
Created on : Apr 20, 2013, 8:02:41 PM
Author : Saeed
Description:
Purpose of the stylesheet follows.
*/
body{
margin-top: 0px;
margin-bottom: 0px;
margin-right: 0px;
margin-left: 0px;
}
.dropdown{
margin-top: 100px;
margin-right: auto;
margin-left: auto;
background: url("dropdown-closed.png");
width: 111px;
height: 37px;
-moz-transition: all 250ms linear 0s;
-webkit-transition: all 250ms linear 0s;
-o-transition: all 250ms linear 0s;
-ms-transition: all 250ms linear 0s;
}
.dropdown:hover{
cursor: pointer;
background: url("dropdown-opened.png");
-moz-transition: all 250ms linear 0s;
-webkit-transition: all 250ms linear 0s;
-o-transition: all 250ms linear 0s;
-ms-transition: all 250ms linear 0s;
}
.dropdown > li{
display: block;
direction: rtl;
}
.dropdown > li > a {
margin-right: 10px;
font-family: Tahoma;
font-size: 11px;
float: right;
margin-top: 10px;
text-decoration: none;
}
.dropdown:hover > li > a {
color: white;
}
.dropdown:hover > li > ul{
position: absolute;
margin-top: 38px;
display: block;
background: url("dropdown-list.png");
width: 148px;
height: 100px;
}
کد پیوست شد .
/*
Document : stylesheet
Created on : Apr 20, 2013, 8:02:41 PM
Author : Saeed
Description:
Purpose of the stylesheet follows.
*/
body{
margin-top: 0px;
margin-bottom: 0px;
margin-right: 0px;
margin-left: 0px;
}
.dropdown{
margin-top: 100px;
margin-right: auto;
margin-left: auto;
background: url("dropdown-closed.png");
width: 111px;
height: 37px;
-moz-transition: all 250ms linear 0s;
-webkit-transition: all 250ms linear 0s;
-o-transition: all 250ms linear 0s;
-ms-transition: all 250ms linear 0s;
}
.dropdown:hover{
cursor: pointer;
background: url("dropdown-opened.png");
-moz-transition: all 250ms linear 0s;
-webkit-transition: all 250ms linear 0s;
-o-transition: all 250ms linear 0s;
-ms-transition: all 250ms linear 0s;
}
.dropdown > li{
display: block;
direction: rtl;
}
.dropdown > li > a {
margin-right: 10px;
font-family: Tahoma;
font-size: 11px;
float: right;
margin-top: 10px;
text-decoration: none;
}
.dropdown:hover > li > a {
color: white;
}
.dropdown:hover > li > ul{
position: absolute;
margin-top: 38px;
display: block;
background: url("dropdown-list.png");
width: 148px;
height: 100px;
}
کد پیوست شد .