jquery实现便签管理系统
代码语言:html
所属分类:其他
代码描述:jquery实现便签管理系统
代码标签: 管理系统
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <style> @import url(https://fonts.googleapis.com/css?family=Gloria+Hallelujah); * { box-sizing:border-box; } body { background:url(https://subtlepatterns.com/patterns/little_pluses.png) #cacaca; margin:30px; } #create, textarea { float:left; padding:25px 25px 40px; margin:0 20px 20px 0; width:250px; height:250px; } #create { user-select:none; padding:20px; border-radius:20px; text-align:center; border:15px solid rgba(0,0,0,0.1); cursor:pointer; color:rgba(0,0,0,0.1); font:220px "Helvetica", sans-serif; line-height:185px; } #create:hover { border-color:rgba(0,0,0,0.2); color:rgba(0,0,0,0.2); } textarea { font:20px 'Gloria Hallelujah', cursive; line-height:1.5; border:0; .........完整代码请登录后点击上方下载按钮下载查看
网友评论0