This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
div{ | |
/*background img*/ | |
background-image: url(page_element/background.png); | |
background-repeat: repeat; | |
/*text shadow*/ | |
text-shadow: 1px 0 0px #FF9BD4, 0 1px 0px #FF9BD4, 0 -1px 0px #FF9BD4, -1px 0 0px #FF9BD4; | |
/*tansparency*/ | |
filter:alpha(Opacity=80); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
div{ | |
/*round corners*/ | |
border-radius:25px; | |
/*box shadow*/ | |
box-shadow: 10px 10px 5px #888888; | |
/*border image*/ | |
border-image:url(border.png) 30 30 round; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
div{ | |
animation:myfirst 5s; | |
-webkit-animation:myfirst 5s; /* Safari and Chrome */ | |
} | |
@keyframes myfirst | |
{ | |
from {background:red;} | |
to {background:yellow;} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*! | |
* jquery.scrollto.js 0.0.1 - https://github.com/yckart/jquery.scrollto.js | |
* Scroll smooth to any element in your DOM. | |
* | |
* Copyright (c) 2012 Yannick Albert (http://yckart.com) | |
* Licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php). | |
* 2013/02/17 | |
**/ | |
$.scrollTo = $.fn.scrollTo = function(x, y, options){ | |
if (!(this instanceof $)) return $.fn.scrollTo.apply($('html, body'), arguments); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
regular expression | |
操作符 描述 | |
\ 转义符 | |
(), (?:), (?=), [] 圆括号和方括号 | |
*, +, ?, {n}, {n,}, {n,m} 限定符 | |
^, $, \anymetacharacter 位置和顺序 | |
| “或”操作 | |
全部符号解释 | |
字符 描述 | |
\ 将下一个字符标记为一个特殊字符、或一个原义字符、或一个 向后引用、或一个八进制转义符。例如,'n' 匹配字符 "n"。'\n' 匹配一个换行符。序列 '\\' 匹配 "\" 而 "\(" 则匹配 "("。 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" | |
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml"> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html;charset=utf-8"/> | |
<link rel="stylesheet" type="text/css" href="style.css"/> | |
<script type="text/javascript" src="javascript.js"></script> | |
<title>LIONHYLRA</title> | |
</head> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
html, body { | |
/*This is important!*/ | |
text-align: center; | |
} | |
p {text-align: left;} | |
body { | |
margin: 0; | |
padding: 0; |
NewerOlder