|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
DIV本身就是容器性质的,你不但可以内嵌table还可以内嵌文本和其它的HTML代码CSS是CascadingstyleSheets的简称,中文译作“层叠样式表单”。
随机背景--当你每次进进该页面时,从已指定的图片文件夹中,随机拔取一个图片作为背景显现。这里先容的办法是用ASP+CSS来完成的。
ASP--来自ASP101
- 以下是援用片断:
- ConstIMGS_DIR="/images"
- 设定图片文件夹的地点,随机显现该文件夹内任一张图片
- DimobjFSO,objFolderObject,objFileCollection,objFile
- DimintFileNumberToUse,intFileLooper
- DimobjImageFileToUse
- DimstrImageSrcText
- SetobjFSO=Server.CreateObject("Scripting.FileSystemObject")
- SetobjFolderObject=objFSO.GetFolder(Server.MapPath(IMGS_DIR))
- SetobjFSO=Nothing
- SetobjFileCollection=objFolderObject.Files
- SetobjFolderObject=Nothing
- Randomize()
- intFileNumberToUse=Int(objFileCollection.Count*Rnd)+1
- intFileLooper=1
- ForEachobjFileinobjFileCollection
- IfintFileLooper=intFileNumberToUseThen
- SetobjImageFileToUse=objFile
- ExitFor
- EndIf
- intFileLooper=intFileLooper+1
- Next
- SetobjFileCollection=Nothing
- strImageSrcText=IMGS_DIR&objImageFileToUse.Name
- SetobjImageFileToUse=Nothing
复制代码 CSS
- 以下是援用片断:
- #pic{
- width:400px;
- height:300px;
- background:url(<%=strImageSrcText%>)no-repeat;
- margin:2emauto;
- }
复制代码 下面代码要加在header区,不克不及放在内部CSS文件里。
</p>
CSS非常容易编写。你可以象写html代码一样轻松地编写CSS。 |
|