一段水印文字的练习

做淘宝登陆页面时登陆框的水印文字的需要,做了如下的练习。

<!DOCTYPE html>
<html>
<head>
<title></title>
<script src="..\jquery\jquery-2.1.3.js" type="text/javascript" ></script>
<style type="text/css">
body,input
{
font-size:18px;
}
.graycss
{
color:#CCCCCC;

}
</style>
<script type="text/javascript">
$(function(){
$("#yourtelephone").keypress(function(e){
if ($(this).attr("inputflag")=="0"){
$(this).attr("inputflag","1");
$(this).val("").removeClass("graycss");

}
event.stopPropagation();
}).keydown(function(e){

if ($(this).attr("inputflag")!="0"){
if ($(this).val().length==0){

$(this).attr("inputflag","0");
$(this).val($(this).attr("telephone")).addClass("graycss");
return false;
}
}
else
{
if(e.key=="Backspace" || e.key=="Del"){return false;};
}
});
});

</script>
</head>
<body>
<form>
<h3>水印提示文字练习</h3>
手机号<input type="text" id="yourtelephone" class="graycss" telephone="输入手机号" inputflag="0" value="输入手机号" />
</form>
</body>

</html>

时间: 2024-10-12 08:19:21

一段水印文字的练习的相关文章

php 图片加水印文字水印

/*给图片加文字水印的方法*/ $dst_path = 'http://f4.topitme.com/4/15/11/1166351597fe111154l.jpg';//保证路径正确 $dst = imagecreatefromstring(file_get_contents($dst_path)); /*imagecreatefromstring()--从字符串中的图像流新建一个图像,返回一个图像标示符,其表达了从给定字符串得来的图像 图像格式将自动监测,只要php支持jpeg,png,gi

ASP.NET图片上传,加水印文字和水印图片!

看了清清月儿的这篇文章让自己受益匪浅,但是觉得还有一些问题.上传图片后还有原来的图片文件存在,觉得这样很不爽,调用file类的delete方法删除原来没有生成水印的图片另外自己又加了一个限制图片大小的函数 1.最简单的单文件上传(没花头) 效果图:说明:这是最基本的文件上传,在asp.net1.x中没有这个FileUpload控件,只有html的上传控件,那时候要把html控件转化为服务器控件,很不好用.其实所有文件上传的美丽效果都是从这个FileUpload控件衍生,第一个例子虽然简单却是根本

js实例_当鼠标移动到某个元素上时在元素下面显示一段提示文字

效果: 当鼠标不在自动登录上时,只显示自动登录这个表单,下面的div提示则隐藏. 当鼠标移动到自动登录这个表单时,则显示下面的div提示,当鼠标移出时再将其隐藏 代码实现与原理: HTML代码: <body> <input type="checkbox" />自动登录 <div id="div1">不要再玩游戏啦!!!</div> </body> CSS代码:给id为div1的元素做一下修饰,并且将其最开始

IOS图片上添加水印文字(微博上图片上得水印文字)

建一个类目(不知道怎么建的可以去百度一下) UIImage的类目 类目的.h文件  文件名为UIImage+watermark #import <UIKit/UIKit.h> @interface UIImage (watermark) //定义一个方法 - (UIImage *)watermarkImage:(NSString *)text; @end .m文件的实现 #import "UIImage+watermark.h" @implementation UIImag

php图片的应用-生成带有水印文字的图片-生成带有水印图标的图片-生成缩略图(//为注释内容,不影响文件执行)

<?php ////////////////定义水印文字函数开始////////////////// function watertext($i,$t='版权所有',$s=20,$c='white',$p=9){ $img = imagecreatefromjpeg($i);   //imagecreatefromjpeg - 由文件或 URL 创建一个新图象. $cc = ''; ////////switch循环,循环水印文字的颜色 开始////// switch($c){ case 'whi

[WinForm]为TextBox设置水印文字

关键代码: using System; using System.Runtime.InteropServices; using System.Windows.Forms; namespace WinFormUtilHelpV2 { /// <summary> /// 基于.NET 2.0的TextBox工具类 /// </summary> public static class TextBoxToolV2 { private const int EM_SETCUEBANNER =

asp.net 图片水印+文字水印

public void AddWaterPic() { //图片水印 string bg = Request.MapPath("~/images/bg.jpg");//背景图 string newPath = Request.MapPath("~/newImages/");//保存路径 string shuiyin= Request.MapPath("~/images/scrollBlock.jpg");//水印图片 System.Drawing

[DevExpress]为TextEdit设置水印文字

关键代码: public static void SetWatermark(this TextEdit textEdit, string watermark) { textEdit.Properties.NullValuePromptShowForEmptyValue = true; textEdit.Properties.NullValuePrompt = watermark; } public static void ClearWatermark(this TextEdit textEdit

DevExpress实现为TextEdit设置水印文字

本文实例展示了DevExpress实现为TextEdit设置水印文字的方法,是一个很实用的技巧.分享给大家供大家参考. 转自 http://blog.csdn.net/yh0503/article/details/51487726 关键代码如下: 1 public static void SetWatermark(this TextEdit textEdit, string watermark) 2 { 3 textEdit.Properties.NullValuePromptShowForEm