Jump to content
  • 0

Плавное появление текста (CSS)


Dayks
 Share

Question

Всем доброго времени суток. Задача: необходимо сделать чтобы при наведении на ссылку в виде картинки (обрамленную обводкой) сбоку от нее расширялось место (увеличивается ширина обрамленной области) и там появлялась текстовая подсказка.


.block a {
float:left;
transition: all 0.4s linear;
-moz-transition: all 0.4s linear;
-webkit-transition: all 0.4s linear;
-o-transition: all 0.4s linear;
width:30px;
height:30px;
border:1px solid #CECECE;
background: #fff url(images/block.png) no-repeat;
}
.block a:after {
content:'подсказка';
float:left;
margin-left:30px;
font-size:22px;
line-height:34px;
color:transparent;
}
.block a:hover {
width:50px;
background: url(images/block_hover.png) no-repeat;
}
.block a:hover:after {
font-size:22px;
color:red;
}

Как видите я пробую реализовать задачу через псевдокласс :after, но проблема в том, что подсказка появляется моментально, без анимации и при этом плавно расширяющийся блок краем плавно едет по подсказке, то есть имеет место такой визуальный "глюк":

5K2N7Vna.jpg

Помогите либо исправить ошибку в коде, либо найти другое решение. Спасибо заранее.

  • Like 1
Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

Транзишены для псевдоэлементов работают, вроде, только в ФФ. Использую обычные теги, либо может подойдет такая реализация - http://jsfiddle.net/KDfav/

+ ещё overflow:hidden; для span добавить.
  • Like 1
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy