Jump to content
  • 0

проблема в трансформации (CSS3)


Георгий123
 Share

Question

Всем привет! Случилась проблема, нужно что бы свойство transition плавно трансформировало таблицу не только по горизонтали (width) но и по вертикали вниз (height). Перепробовал в свойство transition и #wrap1 приписывать функцию height, но по вертикали переходит очень резко, а нужно плавно. Спасибо за внимание.

 

вот исходник:

 

 

<html>
<style type='text/css'>
#wrap1
{
border:1px #000 solid;
width:200px;
padding:10px;
font-size:1.5em;
transition: width 4s, height 4s;
 
}
#wrap1:hover
{
width:500px;
height: 300px;
}
</style>
<body>
<div id="wrap1">ВОТ</div>
 
</body>
</html>
 
 
Link to comment
Share on other sites

12 answers to this question

Recommended Posts

  • 0
 

вставил, все равно не трансформируется в левую сторону.

 

<html>

<head>

  <meta charset="utf-8">

  <TITLE> ... </TITLE>

  <style type="text/css">

  #wrap1

  {

 margin: left; 

 min-height:1px;

 border:1px #000 solid;

 width:200px;

 padding:10px;

 font-size:1.5em;

 transition: width  3s, min-height  3s; 

 position: absolute; 

 

 top:240px;

 left:683px; 

}

#wrap1:hover

{

 

width:500px; 

min-height:300px;

 

}

  </style>

</head> 

<body>

<div id="wrap1"> fff </div>

</body>

</html>

Link to comment
Share on other sites

  • 0

В этом и вся проблема, вы не знаете самых азов, а лезете в css3, http://htmlbook.ru/css/margin . И в принцип работы transition вы тоже не особо хотите вникать.
 

  #wrap1
  {
 
 min-height:1px;
 border:1px #000 solid;
 width:200px;
 padding:10px;
 font-size:1.5em;
 transition: width  3s, min-height  3s,margin-left 3s; 
 margin-left:0;
 background:red;
}
#wrap1:hover
{
margin-left:100px; 
width:500px; 
min-height:300px;
}
Edited by Galaxy
Link to comment
Share on other sites

  • 0

 

В этом и вся проблема, вы не знаете самых азов, а лезете в css3, http://htmlbook.ru/css/margin . И в принцип работы transition вы тоже не особо хотите вникать.

 

  #wrap1
  {
 
 min-height:1px;
 border:1px #000 solid;
 width:200px;
 padding:10px;
 font-size:1.5em;
 transition: width  3s, min-height  3s,margin-left 3s; 
 margin-left:0;
 background:red;
}
#wrap1:hover
{
margin-left:100px; 
width:500px; 
min-height:300px;
}

 

 

 

 

Не я не это имел ввиду, нужно что бы таблица не задвигалась обратно, а распускалась в левую сторону, а не в правую. Точно также как и сейчас только в зеркальном отражении.

Link to comment
Share on other sites

  • 0
 

точно также, только в зеркальном отражении.

 

<html>

<head>

  <meta charset="utf-8">

  <TITLE> ... </TITLE>

  <style type="text/css">

  #wrap1

  {

 margin: left; 

 min-height:1px;

 border:1px #000 solid;

 width:200px;

 padding:10px;

 font-size:1.5em;

 transition: width  3s, min-height  3s; 

 position: absolute; 

 

 top:240px;

 left:683px; 

}

#wrap1:hover

{

 

width:500px; 

min-height:300px;

 

}

  </style>

</head> 

<body>

<div id="wrap1"> fff </div>

</body>

</html>
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