WordPress 主题添加花瓣飘落特效

avatar
avatar
tianzi
91
文章
1
评论
January 23, 202014:06:48 评论 1265字阅读4分13秒

From:知更鸟 http://zmingcx.com/falling-petals-in-wordpress.html

上篇文章过年啦,挂灯笼!教大家在博客上挂个动画灯笼,可能大家认为很好玩,那就再分享一个花瓣飘落的特效,可以加到自己博客上再装点一下节日氛围。

点击下图查看动画效果

WordPress 主题添加花瓣飘落特效

先贴一下代码,下面有打包的文件下载。

// 封装代码
function meihua() { ?>
<!-- 加载snowfall.js -->
<script type="text/javascript" src="<?php bloginfo('template_directory'); ?>/hua/snowfall.js"></script>
<!-- 梅花树枝,可以删除 -->
<div class="meiha"></div>
<!-- 配套样式,可以替换其中的图片地址 -->
<style>
/** 梅花树 **/
.meiha {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 999;
	width: 350px;/** PNG图宽度 **/
	height: 231px;/** PNG图高度 **/
	pointer-events: none;
	background: url('https://s2.ax1x.com/2020/01/21/1kBpid.png');
}
 
/** 梅花翻转动画 **/
.snowfall-flakes {
	pointer-events: none;
	animation: sakura 1s linear 0s infinite;
}
 
.snowfall-flakes {
	animation: sakura 1s linear 0s infinite;
}
 
.night .snowfall-flakes {
	background: transparent !important;
}
 
@keyframes sakura {
	0% {
		transform: rotate3d(0, 0, 0, 0deg);
	}
 
	25% {
		transform: rotate3d(1, 1, 0, 60deg);
	}
 
	50% {
		transform: rotate3d(1, 1, 0, 0deg);
	}
 
	75% {
		transform: rotate3d(1, 0, 0, 60deg);
	}
 
	100% {
		transform: rotate3d(1, 0, 0, 0deg);
	}
}
</style>
<?php }
/** 将代码绑定到页脚 **/
add_action( 'wp_footer', 'meihua', 100 );

以上代码可以替换打包下载的hua.php文件中的内容,图片居右显示。

使用方法:

第一步,解压文件将hua文件夹上传到当前主题根目录中。

第二步,打开当前主题页脚模板footer.php,在<?php wp_footer(); ?>上面添加:

<?php require get_template_directory() . '/hua/hua.php'; ?>

如果只想显示在首页,可以用下面的判断语句把上面的代码包裹起来:

<?php if (is_home()) { ?>
<!-- 代码放这里 -->
<?php } ?>

 

继续阅读
  • 我的微信
  • 这是我的微信扫一扫
  • weinxin
  • 我的微信公众号
  • 我的微信公众号扫一扫
  • weinxin
avatar
  • 本文由 发表于 January 23, 202014:06:48
  • 除非特殊声明,本站文章均为原创,转载请务必保留本文链接
为WordPress主题添加文章字数和阅读时间 Wordpress

为WordPress主题添加文章字数和阅读时间

From:知更鸟 http://zmingcx.com/main-inscription-number-and-reading-time.html 显示文章字数和阅读时间,这功能有什么用呢,我也不知道,不过有用户说人家有我们能不能也加一个,那就加呗,就有这篇为WordPress主题添加文章字数和阅读时间。...
匿名

发表评论

匿名网友 填写信息

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: