我怎样才能重新定位这个div并让它仍然具有动画效果?

时间:2016-12-09 22:09:11

标签: html css

我正在尝试修改此菜单以供我自己使用。https://www.script-tutorials.com/demos/249/index.html

我需要它看起来像enter image description here 我发现不可能让定位正确,发光条需要像照片一样在底部,下拉需要低于那个并向外扩展(可能是对onclick事件的改变?)。

我的HTML中的using UnityEngine; using System.Collections; public class TextureStore { public static void WriteTextureToPlayerPrefs (string tag, Texture2D tex) { // if texture is png otherwise you can use tex.EncodeToJPG(). byte[] texByte = tex.EncodeToPNG (); // convert byte array to base64 string string base64Tex = System.Convert.ToBase64String (texByte); // write string to playerpref PlayerPrefs.SetString (tag, base64Tex); PlayerPrefs.Save (); } public static Texture2D ReadTextureFromPlayerPrefs (string tag) { // load string from playerpref string base64Tex = PlayerPrefs.GetString (tag, null); if (!string.IsNullOrEmpty (base64Tex)) { // convert it to byte array byte[] texByte = System.Convert.FromBase64String (base64Tex); Texture2D tex = new Texture2D (2, 2); //load texture from byte array if (tex.LoadImage (texByte)) { return tex; } } return null; } } 是发光条,菜单代码位于CSS文件的末尾。我试过移动Div" lavalamp"就在我的ul下,当我这样做时,它出现在正确的位置,但动画无法工作。

代码

Div lavalamp

0 个答案:

没有答案